Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 915 Bytes

Excel.ChartGroup.HasRadarAxisLabels.md

File metadata and controls

40 lines (25 loc) · 915 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.HasRadarAxisLabels property (Excel)
vbaxl10.chm568081
vbaxl10.chm568081
Excel.ChartGroup.HasRadarAxisLabels
7b3e0a6f-00da-ac8b-9a64-d79923f13481
04/20/2019
medium

ChartGroup.HasRadarAxisLabels property (Excel)

True if a radar chart has axis labels. Applies only to radar charts. Read/write Boolean.

Syntax

expression.HasRadarAxisLabels

expression A variable that represents a ChartGroup object.

Example

This example turns on radar axis labels for chart group one on Chart1 and 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

[!includeSupport and feedback]