MajorUnitIsAuto Property

Microsoft Graph Visual Basic

MajorUnitIsAuto Property

       

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

Remarks

Setting the MajorUnit property sets this property to False.

Example

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

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