Return the locations of the ticks.
(self)
| 2680 | self._subs = subs |
| 2681 | |
| 2682 | def __call__(self): |
| 2683 | """Return the locations of the ticks.""" |
| 2684 | # Note, these are untransformed coordinates |
| 2685 | vmin, vmax = self.axis.get_view_interval() |
| 2686 | return self.tick_values(vmin, vmax) |
| 2687 | |
| 2688 | def tick_values(self, vmin, vmax): |
| 2689 | linthresh = self._linthresh |
nothing calls this directly
no test coverage detected