A |Legend| object providing access to the properties of the legend for this chart.
(self)
| 131 | |
| 132 | @property |
| 133 | def legend(self): |
| 134 | """ |
| 135 | A |Legend| object providing access to the properties of the legend |
| 136 | for this chart. |
| 137 | """ |
| 138 | legend_elm = self._chartSpace.chart.legend |
| 139 | if legend_elm is None: |
| 140 | return None |
| 141 | return Legend(legend_elm) |
| 142 | |
| 143 | @lazyproperty |
| 144 | def plots(self): |