Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True if Microsoft Word chooses appropriate base units for the specified category axis. The default is True. Read/write Boolean.
Version Information
Version Added: Word 2007
Syntax
expression .BaseUnitIsAuto
expression A variable that represents an Axis object.
Remarks
You cannot set this property for a value axis.
Example
The following example sets the category axis for the first chart in the active document to use a time scale, with the base unit automatically chosen by Word.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart
.Axes(xlCategory).CategoryType = xlTimeScale
.Axes(xlCategory).BaseUnitIsAuto = True
End With
End If
End With