MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / minorticks_on

Method minorticks_on

lib/matplotlib/axes/_base.py:4273–4281  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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."""

Callers 12

test_minorticks_onFunction · 0.45
test_secondary_minorlocFunction · 0.45
test_minor_accountedforFunction · 0.45
test_basicMethod · 0.45
test_additionalMethod · 0.45
minortickstoggleFunction · 0.45

Calls

no outgoing calls

Tested by 12

test_minorticks_onFunction · 0.36
test_secondary_minorlocFunction · 0.36
test_minor_accountedforFunction · 0.36
test_basicMethod · 0.36
test_additionalMethod · 0.36
minortickstoggleFunction · 0.36