MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_label_position

Method set_label_position

lib/mpl_toolkits/mplot3d/axis3d.py:213–224  ·  view source on GitHub ↗

Set the label position. Parameters ---------- position : {'lower', 'upper', 'both', 'default', 'none'} The position of the axis label.

(self, position)

Source from the content-addressed store, hash-verified

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 """

Callers 2

test_axis_positionsFunction · 0.45
toggleMethod · 0.45

Calls

no outgoing calls

Tested by 1

test_axis_positionsFunction · 0.36