Sets the marker angle in respect to `angleref`. The 'angle' property is a angle (in degrees) that may be specified as a number between -180 and 180. Numeric values outside this range are converted to the equivalent value (e.g. 270 is converted to -90).
(self)
| 20 | |
| 21 | @property |
| 22 | def angle(self): |
| 23 | """ |
| 24 | Sets the marker angle in respect to `angleref`. |
| 25 | |
| 26 | The 'angle' property is a angle (in degrees) that may be |
| 27 | specified as a number between -180 and 180. |
| 28 | Numeric values outside this range are converted to the equivalent value |
| 29 | (e.g. 270 is converted to -90). |
| 30 | |
| 31 | Returns |
| 32 | ------- |
| 33 | int|float |
| 34 | """ |
| 35 | return self["angle"] |
| 36 | |
| 37 | @angle.setter |
| 38 | def angle(self, val): |
no outgoing calls
no test coverage detected