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

Method tick_right

lib/matplotlib/axis.py:2922–2933  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

2920 self.stale = True
2921
2922 def tick_right(self):
2923 """
2924 Move ticks and ticklabels (if present) to the right of the Axes.
2925 """
2926 label = True
2927 if 'label1On' in self._major_tick_kw:
2928 label = (self._major_tick_kw['label1On']
2929 or self._major_tick_kw['label2On'])
2930 self.set_ticks_position('right')
2931 # if labels were turned off before this was called
2932 # leave them off
2933 self.set_tick_params(which='both', labelright=label)
2934
2935 def tick_left(self):
2936 """

Callers 6

test_fill_facecolorFunction · 0.80
twinxMethod · 0.80
test_move_offsetlabelFunction · 0.80
test_align_labelsFunction · 0.80
demo_locatable_axes_easyFunction · 0.80

Calls 2

set_ticks_positionMethod · 0.95
set_tick_paramsMethod · 0.80

Tested by 4

test_fill_facecolorFunction · 0.64
test_move_offsetlabelFunction · 0.64
test_align_labelsFunction · 0.64