True if Microsoft Excel calculates minor units for the axis. Read/write Boolean.
Setting the MinorUnit property sets this property to False.
This example automatically calculates major and minor units for the value axis in Chart1.
With Charts("Chart1").Axes(xlValue)
.MajorUnitIsAuto = True
.MinorUnitIsAuto = True
End With