Sets extra matplotlib commands (comma separated) for the streamplot Important:** The extra commands must be comma separated. For example: ```text param1=123,param2='hello' ``` [See Matplotlib's documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.streamplot.html)
(&mut self, extra: &str)
| 193 | /// |
| 194 | /// [See Matplotlib's documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.streamplot.html) |
| 195 | pub fn set_streamplot_extra(&mut self, extra: &str) -> &mut Self { |
| 196 | self.streamplot_extra = extra.to_string(); |
| 197 | self |
| 198 | } |
| 199 | |
| 200 | /// Sets the quiver scale factor (larger values produce smaller arrows) |
| 201 | /// |
no outgoing calls