How to set max and min values man开发者_运维技巧ually on the Axis scale in the ZedGraph library?
chart.GraphPane.YAxis.Scale.Min = 0;
chart.GraphPane.YAxis.Scale.Max = 100;
If you set Min or Max, MinAuto and MaxAuto are automatically set to false.
Helpful: Zedgraph-Documentation (API)
精彩评论