Set the full interaction controls behavior for the plot.
(mut self, controls: PlotControls)
| 178 | |
| 179 | /// Set the full interaction controls behavior for the plot. |
| 180 | pub fn with_controls(mut self, controls: PlotControls) -> Self { |
| 181 | self.controls = Some(controls); |
| 182 | self |
| 183 | } |
| 184 | |
| 185 | /// Set the x-axis limits (min, max) for the plot. |
| 186 | /// If set, these will override autoscaling for the x-axis. |