Sdílet prostřednictvím


ChartGroup.HasRadarAxisLabels Property (PowerPoint)

True if a radar chart has axis labels. Read/write Boolean.

Version Information

Version Added: PowerPoint 2007

Syntax

expression .HasRadarAxisLabels

expression A variable that represents a ChartGroup object.

Remarks

This property applies only to radar charts.

Example

Note

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

The following example enables radar axis labels for chart group one of the first chart in the active document and sets their color. You should run the example on a radar chart.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart.ChartGroups(1)

            .HasRadarAxisLabels = True

            .RadarAxisLabels.Font.ColorIndex = 3

        End With

    End If

End With

See Also

Concepts

ChartGroup Object

ChartGroup Object Members