Remove minor ticks from the Axis.
(self)
| 986 | self.set_minor_locator(mticker.AutoMinorLocator()) |
| 987 | |
| 988 | def minorticks_off(self): |
| 989 | """Remove minor ticks from the Axis.""" |
| 990 | self.set_minor_locator(mticker.NullLocator()) |
| 991 | |
| 992 | def set_tick_params(self, which='major', reset=False, **kwargs): |
| 993 | """ |
no test coverage detected