Move ticks and ticklabels (if present) to the right of the Axes.
(self)
| 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 | """ |