Return a new `c:chart` element.
(rId: str)
| 68 | |
| 69 | @staticmethod |
| 70 | def new_chart(rId: str) -> CT_Chart: |
| 71 | """Return a new `c:chart` element.""" |
| 72 | return cast(CT_Chart, parse_xml(f'<c:chart {nsdecls("c")} {nsdecls("r")} r:id="{rId}"/>')) |
| 73 | |
| 74 | def _new_title(self): |
| 75 | return CT_Title.new_title() |
no test coverage detected