Skip to content

Latest commit

 

History

History
44 lines (22 loc) · 825 Bytes

e6f72a37-cfa7-4888-2688-f236fa61d259.md

File metadata and controls

44 lines (22 loc) · 825 Bytes

Axis.BaseUnitIsAuto Property (Excel)

True if Microsoft Excel chooses appropriate base units for the specified category axis. The default value is True . Read/write Boolean .

Syntax

expression . BaseUnitIsAuto

expression A variable that represents an Axis object.

Remarks

You cannot set this property for a value axis.

Example

This example sets the category axis in embedded chart one on worksheet one to use a time scale with automatic base units.

With Worksheets(1).ChartObjects(1).Chart 
 With .Axes(xlCategory) 
 .CategoryType = xlTimeScale 
 .BaseUnitIsAuto = True 
 End With 
End With

See also

Concepts

Axis Object

Other resources

Axis Object Members