(self, *args, axis_direction="bottom", axis=None, **kwargs)
| 307 | """ |
| 308 | |
| 309 | def __init__(self, *args, axis_direction="bottom", axis=None, **kwargs): |
| 310 | self._axis = axis |
| 311 | self._pad = 5 |
| 312 | self._external_pad = 0 # in pixels |
| 313 | LabelBase.__init__(self, *args, **kwargs) |
| 314 | self.set_axis_direction(axis_direction) |
| 315 | |
| 316 | def set_pad(self, pad): |
| 317 | """ |
nothing calls this directly
no test coverage detected