Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 932 Bytes

Excel.ChartGroup.BubbleScale.md

File metadata and controls

39 lines (24 loc) · 932 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.BubbleScale property (Excel)
vbaxl10.chm568095
vbaxl10.chm568095
Excel.ChartGroup.BubbleScale
cbab742e-4e60-2d10-e8ec-0dcd2a5ff72a
04/20/2019
medium

ChartGroup.BubbleScale property (Excel)

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.

With Worksheets(1).ChartObjects(1).Chart 
 .ChartGroups(1).BubbleScale = 200 
End With

[!includeSupport and feedback]