Partager via


ChartGroup.BubbleScale Property (PowerPoint)

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

Version Information

Version Added: PowerPoint 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

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

Concepts

ChartGroup Object

ChartGroup Object Members