RadarAxisLabels Property

Microsoft Graph Visual Basic

RadarAxisLabels Property

       

Returns a TickLabels object that represents the radar axis labels for the specified chart group. Read-only.

Example

This example turns on radar axis labels for chart group one on the chart and then sets the color for the labels. The example should be run on a radar chart.

With myChart.ChartGroups(1)
    .HasRadarAxisLabels = True
    .RadarAxisLabels.Font.ColorIndex = 3
End With