(self, *, axis_direction="bottom", **kwargs)
| 441 | """ |
| 442 | |
| 443 | def __init__(self, *, axis_direction="bottom", **kwargs): |
| 444 | super().__init__(**kwargs) |
| 445 | self.set_axis_direction(axis_direction) |
| 446 | self._axislabel_pad = 0 |
| 447 | |
| 448 | def get_ref_artist(self): |
| 449 | # docstring inherited |
nothing calls this directly
no test coverage detected