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