Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.11 KB

Word.ChartGroup.BubbleScale.md

File metadata and controls

54 lines (32 loc) · 1.11 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.BubbleScale property (Word)
vbawd10.chm263454756
vbawd10.chm263454756
Word.ChartGroup.BubbleScale
4776723c-4d6e-1009-8d00-6f837fbd4803
06/08/2017
medium

ChartGroup.BubbleScale property (Word)

Returns or sets the scale factor for bubbles in the specified chart group. Read/write Long.

Syntax

expression.BubbleScale

expression A variable that represents a ChartGroup object.

Remarks

You can set this property to an integer from 0 (zero) through 300, corresponding to a percentage of the default size.

Note

This property applies only to bubble charts.

Example

The following example sets the bubble size in the first chart group of the first chart in the active document to 200 percent of the default size.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.ChartGroups(1).BubbleScale = 200 
 End If 
End With

See also

ChartGroup Object

[!includeSupport and feedback]