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

Method data_labels

src/pptx/chart/plot.py:52–60  ·  view source on GitHub ↗

|DataLabels| instance providing properties and methods on the collection of data labels associated with this plot.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

DataLabelsClass · 0.90

Tested by

no test coverage detected