Set the label position. Parameters ---------- position : {'lower', 'upper', 'both', 'default', 'none'} The position of the axis label.
(self, position)
| 211 | return self._tick_position |
| 212 | |
| 213 | def set_label_position(self, position): |
| 214 | """ |
| 215 | Set the label position. |
| 216 | |
| 217 | Parameters |
| 218 | ---------- |
| 219 | position : {'lower', 'upper', 'both', 'default', 'none'} |
| 220 | The position of the axis label. |
| 221 | """ |
| 222 | _api.check_in_list(['lower', 'upper', 'both', 'default', 'none'], |
| 223 | position=position) |
| 224 | self._label_position = position |
| 225 | |
| 226 | def get_label_position(self): |
| 227 | """ |
no outgoing calls