(mut self, on: T)
| 316 | /// Whether to allow scrolling in the plot. Default: `true`. |
| 317 | #[inline] |
| 318 | pub fn allow_scroll<T>(mut self, on: T) -> Self |
| 319 | where |
| 320 | T: Into<Vec2b>, |
| 321 | { |
| 322 | self.allow_scroll = on.into(); |
| 323 | self |
| 324 | } |
| 325 | |
| 326 | /// Whether to allow double clicking to reset the view. |
| 327 | /// Default: `true`. |