(mut self, on: T)
| 306 | /// results if used in combination with `data_aspect`. |
| 307 | #[inline] |
| 308 | pub fn allow_zoom<T>(mut self, on: T) -> Self |
| 309 | where |
| 310 | T: Into<Vec2b>, |
| 311 | { |
| 312 | self.allow_zoom = on.into(); |
| 313 | self |
| 314 | } |
| 315 | |
| 316 | /// Whether to allow scrolling in the plot. Default: `true`. |
| 317 | #[inline] |