ChartGroup.SizeRepresents property (Word)

Returns or sets what the bubble size represents on a bubble chart. Read/write Long.

Syntax

expression.SizeRepresents

expression A variable that represents a ChartGroup object.

Remarks

This property can be either of the following XlSizeRepresents constants:

  • xlSizeIsArea

  • xlSizeIsWidth

Example

The following example sets what the bubble size represents for chart group one of the first chart in the active document.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.ChartGroups(1).SizeRepresents = xlSizeIsWidth 
 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.