MaximumScale Property

Applies To

Axis Object.

Description

Returns or sets the maximum value on the value axis. Applies only to the value axis. Read-write.

Remarks

Setting this property sets the MaximumScaleIsAuto property to False.

See Also

MaximumScaleIsAuto Property, MinimumScale Property, MinimumScaleIsAuto Property.

Example

This example sets the maximum and minimum values for the value axis in Chart1.


With Charts("Chart1").Axes(xlValue)
    .MinimumScale = 10
    .MaximumScale = 120
End With