ChartGroup.BubbleScale Property (Word)
Returns or sets the scale factor for bubbles in the specified chart group. Read/write Long.
Version Information
Version Added: Word 2007
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