MCPcopy Create free account
hub / github.com/scanny/python-pptx / add_series

Method add_series

src/pptx/chart/data.py:717–725  ·  view source on GitHub ↗

Return a |BubbleSeriesData| object newly created and added at the end of this sequence, and having series named *name* and values formatted with *number_format*.

(self, name, number_format=None)

Source from the content-addressed store, hash-verified

715 """
716
717 def add_series(self, name, number_format=None):
718 """
719 Return a |BubbleSeriesData| object newly created and added at the end
720 of this sequence, and having series named *name* and values formatted
721 with *number_format*.
722 """
723 series_data = BubbleSeriesData(self, name, number_format)
724 self.append(series_data)
725 return series_data
726
727 def bubble_sizes_ref(self, series):
728 """

Calls 2

BubbleSeriesDataClass · 0.85
appendMethod · 0.45

Tested by 4

populate_fixtureMethod · 0.76
bubbleSize_fixtureMethod · 0.76
rewrite_fixtureMethod · 0.76
make_bubble_chart_dataFunction · 0.76