Return an XyDataPoint object newly created with values *x* and *y*, and appended to this sequence.
(self, x, y, number_format=None)
| 753 | """ |
| 754 | |
| 755 | def add_data_point(self, x, y, number_format=None): |
| 756 | """ |
| 757 | Return an XyDataPoint object newly created with values *x* and *y*, |
| 758 | and appended to this sequence. |
| 759 | """ |
| 760 | data_point = XyDataPoint(self, x, y, number_format) |
| 761 | self.append(data_point) |
| 762 | return data_point |
| 763 | |
| 764 | |
| 765 | class BubbleSeriesData(XySeriesData): |