Share via


Axis.HasDisplayUnitLabel Property (PowerPoint)

True if the label specified by the DisplayUnit or DisplayUnitCustom property is displayed on the specified axis. The default is True. Read/write Boolean.

Version Information

Version Added: PowerPoint 2007

Syntax

expression .HasDisplayUnitLabel

expression A variable that represents an Axis object.

Example

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

The following example sets the units on the value axis of the first chart in the active document to increments of 500 but keeps the unit label hidden.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart.Axes(xlValue)

            .DisplayUnit = xlCustom

            .DisplayUnitCustom = 500

            .AxisTitle.Caption = "Rebate Amounts"

            .HasDisplayUnitLabel = False

        End With

    End If

End With

See Also

Concepts

Axis Object

Axis Object Members