ChartGroup.BubbleScale property (PowerPoint)

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

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.