Return a `` `` oxml element for this series, containing the series name.
(self)
| 156 | |
| 157 | @property |
| 158 | def tx(self): |
| 159 | """ |
| 160 | Return a ``<c:tx>`` oxml element for this series, containing the |
| 161 | series name. |
| 162 | """ |
| 163 | xml = self._tx_tmpl.format( |
| 164 | **{ |
| 165 | "wksht_ref": self._series.name_ref, |
| 166 | "series_name": self.name, |
| 167 | "nsdecls": " %s" % nsdecls("c"), |
| 168 | } |
| 169 | ) |
| 170 | return parse_xml(xml) |
| 171 | |
| 172 | @property |
| 173 | def tx_xml(self): |