ChartGroup.RadarAxisLabels (Word)
Returns the radar axis labels for the specified chart group.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart.ChartGroups(1)
.HasRadarAxisLabels = True
.RadarAxisLabels.Font.ColorIndex = 3
End With
End If
End With