Return the Excel worksheet reference to the cell containing the name for *series*.
(self, series)
| 72 | raise ValueError("series not in chart data object") |
| 73 | |
| 74 | def series_name_ref(self, series): |
| 75 | """ |
| 76 | Return the Excel worksheet reference to the cell containing the name |
| 77 | for *series*. |
| 78 | """ |
| 79 | return self._workbook_writer.series_name_ref(series) |
| 80 | |
| 81 | def x_values_ref(self, series): |
| 82 | """ |
no outgoing calls