Values on the x and y axis scale if become very large they tend to overlap. How to avoid this?
1 Answer, 1 is accepted
0
Dwight
Telerik team
answered on 06 Nov 2008, 03:54 PM
Hello chirag,
Both axes are easily customizable. You need to disable the AutoScale:
this.radChart1.PlotArea.YAxis.AutoScale = false;
Then just set the range you require, providing minimum, maximum value and step between them: this.radChart1.PlotArea.YAxis.AddRange(0, 2000, 1000);// that will create only 3 labels.
Regards,
Evtim
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.