Generate each float Y value in this series, in the order they appear on the chart. A value of `None` represents a missing Y value (corresponding to a blank Excel cell).
(self)
| 172 | """ |
| 173 | |
| 174 | def iter_values(self): |
| 175 | """ |
| 176 | Generate each float Y value in this series, in the order they appear |
| 177 | on the chart. A value of `None` represents a missing Y value |
| 178 | (corresponding to a blank Excel cell). |
| 179 | """ |
| 180 | yVal = self._element.yVal |
| 181 | if yVal is None: |
| 182 | return |
| 183 | |
| 184 | for idx in range(yVal.ptCount_val): |
| 185 | yield yVal.pt_v(idx) |
| 186 | |
| 187 | @lazyproperty |
| 188 | def points(self): |