MaximumScaleIsAuto Property

Applies To

Axis object.

Description

True if Microsoft Graph calculates the maximum value for the axis. Read/write Boolean.

Remarks

Setting the MaximumScale property sets this property to False.

See Also

MaximumScale property, MinimumScale property, MinimumScaleIsAuto property.

Example

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

With myChart.Axes(xlValue)
    .MinimumScaleIsAuto = True
    .MaximumScaleIsAuto = True
End With