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

Method set_rlabel_position

lib/matplotlib/projections/polar.py:1240–1249  ·  view source on GitHub ↗

Update the theta position of the radius labels. Parameters ---------- value : number The angular position of the radius labels in degrees.

(self, value)

Source from the content-addressed store, hash-verified

1238 return np.rad2deg(self._r_label_position.get_matrix()[0, 2])
1239
1240 def set_rlabel_position(self, value):
1241 """
1242 Update the theta position of the radius labels.
1243
1244 Parameters
1245 ----------
1246 value : number
1247 The angular position of the radius labels in degrees.
1248 """
1249 self._r_label_position.clear().translate(np.deg2rad(value), 0.0)
1250
1251 def set_rscale(self, *args, **kwargs):
1252 return Axes.set_yscale(self, *args, **kwargs)

Callers 4

set_rgridsMethod · 0.95
drag_panMethod · 0.95
polar_demo.pyFile · 0.80

Calls 2

translateMethod · 0.80
clearMethod · 0.45

Tested by 1