I need to format YAxis with percent format. If I put a percent format and addRange, don't work my graph. Below a example:
If I remove the lines below, the scale start 0 and end 10.000,00 with step of 1.000,00.
radChart.PlotArea.YAxis.AutoScale = false;
radChart.PlotArea.YAxis.Appearance.CustomFormat = "#.###";
radChart.PlotArea.YAxis.AddRange(1,100,1);
How do I do to work with AddRange() and percent(I need to show percent simbol(%) in YAxis with my range values).
Thanks.
radChart.PlotArea.YAxis.AutoScale = false;
radChart.PlotArea.YAxis.AddRange(1,100,1);
radChart.PlotArea.YAxis.Appearance.ValueFormat = Telerik.Charting.Styles.ChartValueFormat.Percent;
radChart.PlotArea.YAxis.Appearance.CustomFormat = "#.###";If I remove the lines below, the scale start 0 and end 10.000,00 with step of 1.000,00.
radChart.PlotArea.YAxis.AutoScale = false;
radChart.PlotArea.YAxis.Appearance.CustomFormat = "#.###";
radChart.PlotArea.YAxis.AddRange(1,100,1);
How do I do to work with AddRange() and percent(I need to show percent simbol(%) in YAxis with my range values).
Thanks.