Display minor ticks on the Axes. Displaying minor ticks may reduce performance; you may turn them off using `minorticks_off()` if drawing speed is a problem.
(self)
| 4271 | return "(x, y) = {}".format(" | ".join(xy_strs)) |
| 4272 | |
| 4273 | def minorticks_on(self): |
| 4274 | """ |
| 4275 | Display minor ticks on the Axes. |
| 4276 | |
| 4277 | Displaying minor ticks may reduce performance; you may turn them off |
| 4278 | using `minorticks_off()` if drawing speed is a problem. |
| 4279 | """ |
| 4280 | self.xaxis.minorticks_on() |
| 4281 | self.yaxis.minorticks_on() |
| 4282 | |
| 4283 | def minorticks_off(self): |
| 4284 | """Remove minor ticks from the Axes.""" |
no outgoing calls