Minimum Property
Syntax
CWAxis.Minimum
Data Type
Purpose
Specifies the minimum value of the axis.
Remarks
Use the SetMinMax method to set the minimum and maximum values simultaneously.
Example
'Set the minimum and maximum values of the x axis
CWGraph1.Axes.Item(1).Minimum = 0
CWGraph1.Axes.Item(1).Maximum = 100
'Alternately, call SetMinMax to specify both values.
CWGraph1.Axes.Item(1).SetMinMax 0, 100