You could set the necessary range of any axis with next code:
C#
((Stimulsoft.Report.Chart.StiAxis )(((Stimulsoft.Report.Chart.StiAxisArea)(Chart1.Area)).YAxis)).Range.Auto = false; ((Stimulsoft.Report.Chart.StiAxis )(((Stimulsoft.Report.Chart.StiAxisArea)(Chart1.Area)).YAxis)).Range.Minimum = 0; ((Stimulsoft.Report.Chart.StiAxis )(((Stimulsoft.Report.Chart.StiAxisArea)(Chart1.Area)).YAxis)).Range.Maximum = 4;
0 Comments