MinimumScaleIsAuto property (Excel Graph)

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

Syntax

expression.MinimumScaleIsAuto

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

Setting the MinimumScale property sets this property to False.

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.