SizeRepresents Property

Microsoft Office Web Components Visual Basic

ChartSizeRepresentsEnum can be one of these ChartSizeRepresentsEnum constants.
chSizeIsArea
chSizeIsWidth

expression.SizeRepresents

expression    Required. An expression that returns a ChChart object.

Example

This example sets the SizeRepresents property for a bubble chart.

Sub SetSizeParameter()

   Dim chConstants

   Set chConstants = Chartspace1.Constants

   ChartSpace1.Charts(0).SizeRepresents = chConstants.chSizeIsArea

End Sub