This is a migrated thread and some comments may be shown as answers.

Problem on plotting with large values

1 Answer 39 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
chirag
Top achievements
Rank 1
chirag asked on 04 Nov 2008, 10:37 AM

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

Sort by
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.
Tags
Chart (obsolete as of Q1 2013)
Asked by
chirag
Top achievements
Rank 1
Answers by
Dwight
Telerik team
Share this question
or