This topic has not yet been rated - Rate this topic

ChartGroup.BubbleScale Property

Office 2007
Returns or sets the scale factor for bubbles in the specified chart group. Can be an integer value from 0 (zero) to 300, corresponding to a percentage of the default size. Applies only to bubble charts. Read/write Long.

Syntax

expression.BubbleScale

expression   A variable that represents a ChartGroup object.

Example

This example sets the bubble size in chart group one to 200% of the default size.

Visual Basic for Applications
With Worksheets(1).ChartObjects(1).Chart
    .ChartGroups(1).BubbleScale = 200
End With



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.