Hi,
I'm trying to accomplish following:
I have graphs that represents percentage. So max value of graph iss 100%. In case when I have graph that si 100% I want my chart to extend to 110 but I must not set that last label to true.
I have setup this:
I'm trying to accomplish following:
I have graphs that represents percentage. So max value of graph iss 100%. In case when I have graph that si 100% I want my chart to extend to 110 but I must not set that last label to true.
I have setup this:
grafikon.PlotArea.YAxis.AxisMode =
ChartYAxisMode.Extended;
grafikon.PlotArea.YAxis.AutoScale =
false;
grafikon.PlotArea.YAxis.MaxValue = 105;
grafikon.PlotArea.YAxis.MinValue = 0;
grafikon.PlotArea.YAxis.Step = 10;
Basicly I wanted that chart can go only up to y value of 105 but when I set step parameter graph goes to 110 and writes label 110 on yaxis. That is confusing for my clients because they think they can have 110% of something.