|DataLabels| instance providing properties and methods on the collection of data labels associated with this plot.
(self)
| 50 | |
| 51 | @property |
| 52 | def data_labels(self): |
| 53 | """ |
| 54 | |DataLabels| instance providing properties and methods on the |
| 55 | collection of data labels associated with this plot. |
| 56 | """ |
| 57 | dLbls = self._element.dLbls |
| 58 | if dLbls is None: |
| 59 | raise ValueError("plot has no data labels, set has_data_labels = True first") |
| 60 | return DataLabels(dLbls) |
| 61 | |
| 62 | @property |
| 63 | def has_data_labels(self): |