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

Method set_ticks_position

lib/mpl_toolkits/mplot3d/axis3d.py:189–200  ·  view source on GitHub ↗

Set the ticks position. Parameters ---------- position : {'lower', 'upper', 'both', 'default', 'none'} The position of the bolded axis lines, ticks, and tick labels.

(self, position)

Source from the content-addressed store, hash-verified

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

Callers 1

test_axis_positionsFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_axis_positionsFunction · 0.36