Update the theta position of the radius labels. Parameters ---------- value : number The angular position of the radius labels in degrees.
(self, value)
| 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) |