(self, tickdir)
| 421 | return self.axes.get_xaxis_text2_transform(self._pad) |
| 422 | |
| 423 | def _apply_tickdir(self, tickdir): |
| 424 | # docstring inherited |
| 425 | super()._apply_tickdir(tickdir) |
| 426 | mark1, mark2 = { |
| 427 | 'out': (mlines.TICKDOWN, mlines.TICKUP), |
| 428 | 'in': (mlines.TICKUP, mlines.TICKDOWN), |
| 429 | 'inout': ('|', '|'), |
| 430 | }[self._tickdir] |
| 431 | self.tick1line.set_marker(mark1) |
| 432 | self.tick2line.set_marker(mark2) |
| 433 | |
| 434 | def update_position(self, loc): |
| 435 | """Set the location of tick in data coords with scalar *loc*.""" |
nothing calls this directly
no test coverage detected