BaseUnitIsAuto Property
Applies To
Axis object.
Description
True if Microsoft Graph chooses appropriate base units for the specified category axis. The default value is True. Read/write Boolean.
Remarks
You cannot set this property for a value axis.
See Also
BaseUnit property, CategoryType property.
Example
This example sets the category axis on the chart to use a time scale with automatic base units.
With myChart
With .Axes(xlCategory)
.CategoryType = xlTimeScale
.BaseUnitIsAuto = True
End With
End With