Axis.CategoryNames Property

Word Developer Reference

Returns or sets all the category names as a text array for the specified axis. Read/write Variant.

Version Information
 Version Added:  Word 2007

Syntax

expression.CategoryNames

expression   A variable that represents an Axis object.

Example

The following example uses an array to set individual category names for the first chart in the active document.

Visual Basic for Applications
  With ActiveDocument.InlineShapes(1)
    If .HasChart Then
        .Chart.Axes(xlCategory).CategoryNames = _
            Array ("1985", "1986", "1987", "1988", "1989")
    End If
End With

See Also