Maximum Property

Measurement Studio User Interface

Maximum Property

Syntax

CWAxis.Maximum

Data Type

Variant

Purpose

Specifies the maximum 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

See Also

SetMinMax

Minimum

Inverted