The |ChartFormat| object providing access to the shape formatting properties of this data point, such as line and fill.
(self)
| 328 | |
| 329 | @lazyproperty |
| 330 | def format(self): |
| 331 | """ |
| 332 | The |ChartFormat| object providing access to the shape formatting |
| 333 | properties of this data point, such as line and fill. |
| 334 | """ |
| 335 | majorGridlines = self._xAx.get_or_add_majorGridlines() |
| 336 | return ChartFormat(majorGridlines) |
| 337 | |
| 338 | |
| 339 | class TickLabels(object): |
nothing calls this directly
no test coverage detected