Set up the ticks and ticklabels. This should not be needed by users.
(self)
| 831 | self.stale = True |
| 832 | |
| 833 | def update_ticks(self): |
| 834 | """ |
| 835 | Set up the ticks and ticklabels. This should not be needed by users. |
| 836 | """ |
| 837 | # Get the locator and formatter; defaults to self._locator if not None. |
| 838 | self._get_ticker_locator_formatter() |
| 839 | self.long_axis.set_major_locator(self._locator) |
| 840 | self.long_axis.set_minor_locator(self._minorlocator) |
| 841 | self.long_axis.set_major_formatter(self._formatter) |
| 842 | |
| 843 | def _get_ticker_locator_formatter(self): |
| 844 | """ |
no test coverage detected