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

Method tick_bottom

lib/matplotlib/axis.py:2706–2716  ·  view source on GitHub ↗

Move ticks and ticklabels (if present) to the bottom of the Axes.

(self)

Source from the content-addressed store, hash-verified

2704 self.set_tick_params(which='both', labeltop=label)
2705
2706 def tick_bottom(self):
2707 """
2708 Move ticks and ticklabels (if present) to the bottom of the Axes.
2709 """
2710 label = True
2711 if 'label1On' in self._major_tick_kw:
2712 label = (self._major_tick_kw['label1On']
2713 or self._major_tick_kw['label2On'])
2714 self.set_ticks_position('bottom')
2715 # If labels were turned off before this was called, leave them off.
2716 self.set_tick_params(which='both', labelbottom=label)
2717
2718 def get_ticks_position(self):
2719 """

Callers 6

twinyMethod · 0.80
spyMethod · 0.80
test_shared_and_movedFunction · 0.80
test_twin_removeFunction · 0.80
broken_axis.pyFile · 0.80
stock_prices.pyFile · 0.80

Calls 2

set_ticks_positionMethod · 0.95
set_tick_paramsMethod · 0.80

Tested by 2

test_shared_and_movedFunction · 0.64
test_twin_removeFunction · 0.64