MaximumScaleIsAuto Property

Applies To

Axis Object.

Description

True if Microsoft Excel calculates the maximum value for the value axis. Applies only to the value axis. Read-write.

Remarks

Setting the MaximumScale property sets this property to False.

See Also

MaximumScale Property, MinimumScale Property, MinimumScaleIsAuto Property.

Example

This example automatically calculates the maximum scale and minimum scale for the value axis in Chart1.


With Charts("Chart1").Axes(xlValue)
    .MinimumScaleIsAuto = True
    .MaximumScaleIsAuto = True
End With