I used ZedGraph to print data from multiple sources with one click. I need the Y axis to always have the same maximum and minimum values ββfor each graph. I need this to see changes between datasets when I look at them. In my case, it is impractical to compile data from several sources on the same chart.
I tried to set the axis properties as follows:
myPane.Y2Axis.Scale.Max = 40; myPane.Y2Axis.Scale.MaxAuto = false; myPane.Y2Axis.Scale.Min = -40; myPane.Y2Axis.Scale.MinAuto = false;
I can still see that the axes are automatically scaled. Please give me a hint if this is possible or not. I probably only miss a small thing ...
(by the way: I hope someone chooses this project, that's great!)
source share