MinorUnitIsAuto Property

Applies To

Axis object.

Description

True if Microsoft Graph calculates minor units for the axis. Read/write Boolean.

Remarks

Setting the MinorUnit property sets this property to False.

See Also

MajorUnit property, MajorUnitIsAuto property, MajorUnitScale property, MinorUnit property, MinorUnitScale property.

Example

This example automatically calculates major and minor units for the value axis.

With myChart.Axes(xlValue)
    .MajorUnitIsAuto = True
    .MinorUnitIsAuto = True
End With