Hi Polina,
Really appreciate your response, thank you.
I get the use of
YAxis.AddRange but my DataYColumn might have data in thousands for 1 financial year and in milions for the next financial year. Hence making it hard to fix maxValue and step for Y-axis.
I have pasted my code below. Currently I do not have any constraints on the Y-axis so depending on my Column1 values, the Y-axis minValue, maxValue and Step are automatically set.
radChart.DataSource = myDataTable;
radChart.PlotArea.XAxis.AutoScale = false;
radChart.PlotArea.XAxis.DataLabelsColumn =
"MonthName";
radChart.PlotArea.YAxis.AutoScale =
true;
radChart.Series[0].DataYColumn =
"Column1";
radChart.DataBind();
So coming back to my original question, so how do I make sure only 10 points are dispalyed on the Y-axis at all times.
Thanks in advance.