Sets the text rotation angle in degrees (2D only) See
(&mut self, rotation: f64)
| 161 | /// |
| 162 | /// See <https://matplotlib.org/stable/api/text_api.html#matplotlib.text.Text.set_rotation> |
| 163 | pub fn set_rotation(&mut self, rotation: f64) -> &mut Self { |
| 164 | self.rotation = Some(rotation); |
| 165 | self |
| 166 | } |
| 167 | |
| 168 | /// Sets use bounding box flag |
| 169 | pub fn set_bbox(&mut self, flag: bool) -> &mut Self { |
no outgoing calls