Set the ticks position. Parameters ---------- position : {'lower', 'upper', 'both', 'default', 'none'} The position of the bolded axis lines, ticks, and tick labels.
(self, position)
| 187 | return ticks |
| 188 | |
| 189 | def set_ticks_position(self, position): |
| 190 | """ |
| 191 | Set the ticks position. |
| 192 | |
| 193 | Parameters |
| 194 | ---------- |
| 195 | position : {'lower', 'upper', 'both', 'default', 'none'} |
| 196 | The position of the bolded axis lines, ticks, and tick labels. |
| 197 | """ |
| 198 | _api.check_in_list(['lower', 'upper', 'both', 'default', 'none'], |
| 199 | position=position) |
| 200 | self._tick_position = position |
| 201 | |
| 202 | def get_ticks_position(self): |
| 203 | """ |
no outgoing calls