setting the Y-axis to 0-based

A

Alex

Right now, when I assign the Y-axis

series.SetData(ChartDimensionsEnum.chDimYValues,
Convert.ToInt32(OWC10.ChartSpecialDataSourcesEnum.chDataLiteral), values);



if my lowest value in values array is 40%, but I want the Y-axis to range
from 0-100% no matter what, how do I do that?
 
A

Alvin Bruney [MVP]

set the min and max scaling values on the axis, that should force the axes
to draw according to this scale irrespective of the data
 
Top