The |ChartFormat| object providing access to the shape formatting properties of this data point, such as line and fill.
(self)
| 73 | |
| 74 | @lazyproperty |
| 75 | def format(self): |
| 76 | """ |
| 77 | The |ChartFormat| object providing access to the shape formatting |
| 78 | properties of this data point, such as line and fill. |
| 79 | """ |
| 80 | dPt = self._ser.get_or_add_dPt_for_point(self._idx) |
| 81 | return ChartFormat(dPt) |
| 82 | |
| 83 | @lazyproperty |
| 84 | def marker(self): |
no test coverage detected