Axis.DisplayUnitLabel Property (Word)

Returns the DisplayUnitLabel object for the specified axis. Returns null if the HasDisplayUnitLabel property is set to False. Read-only.

Version Information

Version Added: Word 2007

Syntax

expression .DisplayUnitLabel

expression A variable that represents an Axis object.

Example

The following example sets the label caption to "Millions" for the value axis of the first chart in the active document, and then it turns off automatic font scaling.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.Axes(xlValue).DisplayUnitLabel 
 .Caption = "Millions" 
 .AutoScaleFont = False 
 End With 
 End If 
End With

See Also

Concepts

Axis Object

Axis Object Members