ShowBubbleSize Property

Allows the user to show the bubble size for the data labels on a chart. Read/write Boolean.

expression.ShowBubbleSize

Remarks

The chart must first be active before you can access the data labels programmatically.

Example

This example enables the bubble size to be shown for the data labels of the first series on the first chart.

  Sub UseBubbleSize()
ActiveSheet.ChartObjects(1).Activate
ActiveChart.SeriesCollection(1) _
    .DataLabels.<strong class="bterm">ShowBubbleSize</strong> = True

End Sub