Return the locations of the ticks
(self)
| 1825 | self.offset = offset |
| 1826 | |
| 1827 | def __call__(self): |
| 1828 | """Return the locations of the ticks""" |
| 1829 | dmin, dmax = self.axis.get_data_interval() |
| 1830 | return self.tick_values(dmin, dmax) |
| 1831 | |
| 1832 | def tick_values(self, vmin, vmax): |
| 1833 | # We want tick values in the closed interval [vmin, vmax]. |
nothing calls this directly
no test coverage detected