I have a chart which I am trying to get to fit in a specific width on a page, oriented horizontally. Everything is fine except for the Y axis, which has a scale of 1000. The numbers on the Y axis are running together. I think this would be fixed if I were able to set the scale to 2000 instead of 1000, but when I try to do so at runtime, the scale is set to 1000. Here is my code:
RadChart1.Height = dt.Rows.Count * 50; RadChart1.DataSource = dt; RadChart1.PlotArea.XAxis.DataLabelsColumn = "Team"; RadChart1.AutoLayout = true; RadChart1.PlotArea.YAxis.Step = 2000; RadChart1.SeriesOrientation = Telerik.Charting.ChartSeriesOrientation.Horizontal; //RadChart1.AutoTextWrap = true; RadChart1.ChartTitle.TextBlock.Text = "Team Totals"; RadChart1.Legend.Visible = false; RadChart1.DataBind();