How to fix the scale of X-axis scale? For example, I would like to display 0, 100, 200, 300 for X-axis.
Thanks.
myPane.XAxis.Scale.Min = 0;
myPane.XAxis.Scale.Max = 300;
myPane.XAxis.Scale.MajorStep = 100;
or, if you want to have some margins at the top and bottom:
myPane.XAxis.Scale.Min = -10;
myPane.XAxis.Scale.Max = 310;
Hi gacko, thanks for the input.
Really appreciate your efforts and time to answer our questions.
All pleasure is mine ;) I still believe, that one day ZG will be alive again :D
Log in to post a comment.
How to fix the scale of X-axis scale? For example, I would like to display 0,
100, 200, 300 for X-axis.
Thanks.
myPane.XAxis.Scale.Min = 0;
myPane.XAxis.Scale.Max = 300;
myPane.XAxis.Scale.MajorStep = 100;
or, if you want to have some margins at the top and bottom:
myPane.XAxis.Scale.Min = -10;
myPane.XAxis.Scale.Max = 310;
myPane.XAxis.Scale.MajorStep = 100;
Hi gacko, thanks for the input.
Really appreciate your efforts and time to answer our questions.
All pleasure is mine ;) I still believe, that one day ZG will be alive again
:D