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 ?
You can try using:
this.ultraChart1.Axis.Y2.Labels.Visible = false;
this.ultraChart1.Axis.X2.Labels.Visible = false;
this.ultraChart1.Axis.X2.Labels.SeriesLabels.Visible = false;
I tried but it doesn't work!
Teodor Taushanov"] 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;