Generate each of the `c:ser` elements in this chart, ordered first by the document order of the containing xChart element, then by their ordering within the xChart element (not necessarily document order).
(self)
| 182 | valAx = ZeroOrMore("c:valAx") |
| 183 | |
| 184 | def iter_sers(self): |
| 185 | """ |
| 186 | Generate each of the `c:ser` elements in this chart, ordered first by |
| 187 | the document order of the containing xChart element, then by their |
| 188 | ordering within the xChart element (not necessarily document order). |
| 189 | """ |
| 190 | for xChart in self.iter_xCharts(): |
| 191 | for ser in xChart.iter_sers(): |
| 192 | yield ser |
| 193 | |
| 194 | def iter_xCharts(self): |
| 195 | """ |