Minimum Property

3D Graph Control

Minimum Property

Syntax

CWAxis3D.Minimum

Data Type

Variant

Purpose

Specifies the minimum value of the axis.

Remarks

The minimum value always must be less than the maximum 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

See Also

SetMinMax

Maximum

Inverted