Return the locations of the ticks.
(self)
| 2017 | self._offset = offset |
| 2018 | |
| 2019 | def __call__(self): |
| 2020 | """Return the locations of the ticks.""" |
| 2021 | vmin, vmax = self.axis.get_view_interval() |
| 2022 | return self.tick_values(vmin, vmax) |
| 2023 | |
| 2024 | def tick_values(self, vmin, vmax): |
| 2025 | if vmax < vmin: |
nothing calls this directly
no test coverage detected