Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.07 KB

Word.ChartGroup.RadarAxisLabels.md

File metadata and controls

48 lines (31 loc) · 1.07 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.RadarAxisLabels property (Word)
vbawd10.chm263454744
vbawd10.chm263454744
Word.ChartGroup.RadarAxisLabels
30b37487-bef9-b333-7df7-546d85a92047
06/08/2017
medium

ChartGroup.RadarAxisLabels property (Word)

Returns the radar axis labels for the specified chart group. Read-only TickLabels.

Syntax

expression.RadarAxisLabels

expression A variable that represents a ChartGroup object.

Example

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

See also

ChartGroup Object

[!includeSupport and feedback]