Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True to show the bubble size for the data labels on a chart. False to hide. Read/write Boolean.
expression.ShowBubbleSize
expression An expression that returns a DataLabel object.
The chart must first be active before you can access the data labels programmatically, or a run-time error will occur.
This example shows the bubble size for the data labels of the first series on the first chart. This example assumes that a chart exists on the active worksheet.
Sub UseBubbleSize()
ActiveSheet.ChartObjects(1).Activate
ActiveChart.SeriesCollection(1) _
.DataLabels.ShowBubbleSize = True
End Sub
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.