Move ticks and ticklabels (if present) to the left of the Axes.
(self)
| 2933 | self.set_tick_params(which='both', labelright=label) |
| 2934 | |
| 2935 | def tick_left(self): |
| 2936 | """ |
| 2937 | Move ticks and ticklabels (if present) to the left of the Axes. |
| 2938 | """ |
| 2939 | label = True |
| 2940 | if 'label1On' in self._major_tick_kw: |
| 2941 | label = (self._major_tick_kw['label1On'] |
| 2942 | or self._major_tick_kw['label2On']) |
| 2943 | self.set_ticks_position('left') |
| 2944 | # if labels were turned off before this was called |
| 2945 | # leave them off |
| 2946 | self.set_tick_params(which='both', labelleft=label) |
| 2947 | |
| 2948 | def get_ticks_position(self): |
| 2949 | """ |