Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.05 KB

Word.ChartGroup.DoughnutHoleSize.md

File metadata and controls

50 lines (30 loc) · 1.05 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.DoughnutHoleSize property (Word)
vbawd10.chm263454722
vbawd10.chm263454722
Word.ChartGroup.DoughnutHoleSize
5f4098ee-7d94-ace4-b412-1c7071434973
06/08/2017
medium

ChartGroup.DoughnutHoleSize property (Word)

Returns or sets the size of the hole in a doughnut chart group. Read/write Long.

Syntax

expression.DoughnutHoleSize

expression A variable that represents a ChartGroup object.

Remarks

The hole size is expressed as a percentage of the chart size, from 10 through 90 percent.

Example

The following example sets the hole size for doughnut group one of the first chart in the active document. You should run the example on a 2D doughnut chart.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.DoughnutGroups(1).DoughnutHoleSize = 10 
 End If 
End With

See also

ChartGroup Object

[!includeSupport and feedback]