Applies To
Axis Object.
Description
True if Microsoft Excel calculates the minimum value for the value axis. Applies only to the value axis. Read-write.
Remarks
Setting the MinimumScale property sets this property to False.
See Also
MaximumScale Property, MaximumScaleIsAuto Property, MinimumScale 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