Turn the minor ticks of the colorbar off.
(self)
| 970 | self._short_axis().set_minor_locator(ticker.NullLocator()) |
| 971 | |
| 972 | def minorticks_off(self): |
| 973 | """Turn the minor ticks of the colorbar off.""" |
| 974 | self._minorlocator = ticker.NullLocator() |
| 975 | self.long_axis.set_minor_locator(self._minorlocator) |
| 976 | |
| 977 | def set_label(self, label, *, loc=None, **kwargs): |
| 978 | """ |
nothing calls this directly
no test coverage detected