Turn on colorbar minor ticks.
(self)
| 963 | self.long_axis.set_ticklabels(ticklabels, minor=minor, **kwargs) |
| 964 | |
| 965 | def minorticks_on(self): |
| 966 | """ |
| 967 | Turn on colorbar minor ticks. |
| 968 | """ |
| 969 | self.ax.minorticks_on() |
| 970 | self._short_axis().set_minor_locator(ticker.NullLocator()) |
| 971 | |
| 972 | def minorticks_off(self): |
| 973 | """Turn the minor ticks of the colorbar off.""" |
no test coverage detected