Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1120
position of a chart
posted

I am using column chart control, the chart is not center alignment in the control, its original point is up-right. How can i change  it ? 

Parents
No Data
Reply
  • 17605
    posted

    You can try using: 

    this.ultraChart1.Axis.Y2.Visible = true;

    this.ultraChart1.Axis.Y2.Labels.Visible = false;

    this.ultraChart1.Axis.X2.Visible = true;

    this.ultraChart1.Axis.X2.Labels.Visible = false;

    this.ultraChart1.Axis.X2.Labels.SeriesLabels.Visible = false;

Children