Maximum Property
Syntax
CWAxis3D.Maximum
Data Type
Purpose
Specifies the maximum value of the axis.
Remarks
The maximum value always must be greater than the minimum value. Use the SetMinMax method to set the minimum and maximum values at the same time.
Example
'Set the minimum and maximum values of the x-axis
CWGraph3D1.Axes.Item(1).Minimum = 0
CWGraph3D1.Axes.Item(1).Maximum = 100
'Alternately, call SetMinMax
CWGraph3D1.Axes.Item(1).SetMinMax 0, 100