ChartGroup.RadarAxisLabels property (PowerPoint)
Returns the radar axis labels for the specified chart group. Read-only TickLabels.
expression.RadarAxisLabels
expression A variable that represents a ChartGroup object.
Примітка
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 for the first chart in the active document and then sets the color for the labels to red. 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
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.