show_bubble_size property
ChartDataLabelCollection.show_bubble_size property
Allows to specify whether bubble size is to be displayed for the data labels of the entire series.
Applies only to Bubble charts.
Default value is False
.
@property
def show_bubble_size(self) -> bool:
...
@show_bubble_size.setter
def show_bubble_size(self, value: bool):
...
Remarks
Value defined for this property can be overridden for an individual data label with using the ChartDataLabel.show_bubble_size property.
Examples
Shows how to work with data labels of a bubble chart.
doc = aw.Document()
builder = aw.DocumentBuilder(doc=doc)
chart = builder.insert_chart(chart_type=aw.drawing.charts.ChartType.BUBBLE, width=500, height=300).chart
# Clear the chart's demo data series to start with a clean chart.
chart.series.clear()
# Add a custom series with X/Y coordinates and diameter of each of the bubbles.
series = chart.series.add(series_name='Aspose Test Series', x_values=[2.9, 3.5, 1.1, 4, 4], y_values=[1.9, 8.5, 2.1, 6, 1.5], bubble_sizes=[9, 4.5, 2.5, 8, 5])
# Enable data labels, and then modify their appearance.
series.has_data_labels = True
data_labels = series.data_labels
data_labels.show_bubble_size = True
data_labels.show_category_name = True
data_labels.show_series_name = True
data_labels.separator = ' & '
doc.save(file_name=ARTIFACTS_DIR + 'Charts.DataLabelsBubbleChart.docx')
See Also
- module aspose.words.drawing.charts
- class ChartDataLabelCollection