Generate each xChart child element in document.
(self)
| 192 | yield ser |
| 193 | |
| 194 | def iter_xCharts(self): |
| 195 | """ |
| 196 | Generate each xChart child element in document. |
| 197 | """ |
| 198 | plot_tags = ( |
| 199 | qn("c:area3DChart"), |
| 200 | qn("c:areaChart"), |
| 201 | qn("c:bar3DChart"), |
| 202 | qn("c:barChart"), |
| 203 | qn("c:bubbleChart"), |
| 204 | qn("c:doughnutChart"), |
| 205 | qn("c:line3DChart"), |
| 206 | qn("c:lineChart"), |
| 207 | qn("c:ofPieChart"), |
| 208 | qn("c:pie3DChart"), |
| 209 | qn("c:pieChart"), |
| 210 | qn("c:radarChart"), |
| 211 | qn("c:scatterChart"), |
| 212 | qn("c:stockChart"), |
| 213 | qn("c:surface3DChart"), |
| 214 | qn("c:surfaceChart"), |
| 215 | ) |
| 216 | |
| 217 | for child in self.iterchildren(): |
| 218 | if child.tag not in plot_tags: |
| 219 | continue |
| 220 | yield child |
| 221 | |
| 222 | @property |
| 223 | def last_ser(self): |
no test coverage detected