series_groups property

Chart.series_groups property

Provides access to a series group collection of this chart.

@property
def series_groups(self) -> aspose.words.drawing.charts.ChartSeriesGroupCollection:
    ...

Examples

Show how to configure gap width and overlap.

doc = aw.Document()
builder = aw.DocumentBuilder(doc=doc)
shape = builder.insert_chart(chart_type=aw.drawing.charts.ChartType.COLUMN, width=450, height=250)
series_group = shape.chart.series_groups[0]
# Set column gap width and overlap.
series_group.gap_width = 450
series_group.overlap = -75
doc.save(file_name=ARTIFACTS_DIR + 'Charts.ConfigureGapOverlap.docx')

See Also