A data point in a category chart series. Provides access to the value of the datapoint and the number format with which it should appear in the Excel file.
| 802 | |
| 803 | |
| 804 | class CategoryDataPoint(_BaseDataPoint): |
| 805 | """ |
| 806 | A data point in a category chart series. Provides access to the value of |
| 807 | the datapoint and the number format with which it should appear in the |
| 808 | Excel file. |
| 809 | """ |
| 810 | |
| 811 | def __init__(self, series_data, value, number_format): |
| 812 | super(CategoryDataPoint, self).__init__(series_data, number_format) |
| 813 | self._value = value |
| 814 | |
| 815 | @property |
| 816 | def value(self): |
| 817 | """ |
| 818 | The (Y) value for this category data point. |
| 819 | """ |
| 820 | return self._value |
| 821 | |
| 822 | |
| 823 | class XyDataPoint(_BaseDataPoint): |
no outgoing calls
searching dependent graphs…