Remove minor ticks from the Axes.
(self)
| 4281 | self.yaxis.minorticks_on() |
| 4282 | |
| 4283 | def minorticks_off(self): |
| 4284 | """Remove minor ticks from the Axes.""" |
| 4285 | self.xaxis.minorticks_off() |
| 4286 | self.yaxis.minorticks_off() |
| 4287 | |
| 4288 | # Interactive manipulation |
| 4289 |
no outgoing calls