Applies To
ChartGroup Object.
Description
Accessor. Returns a TickLabels object that represents the radar axis labels for the specified chart group. Read-only.
See Also
HasRadarAxisLabels Property.
Example
This example turns on radar axis labels for chart group one in Chart1 and then sets their color. The example should be run on a radar chart.
With Charts("Chart1").ChartGroups(1) .HasRadarAxisLabels = True .RadarAxisLabels.Font.ColorIndex = 3 End With