Set the y-axis limits (min, max) for the plot. If set, these will override autoscaling for the y-axis.
(&mut self, min: f64, max: f64)
| 293 | |
| 294 | /// Set the x-axis scale mode. |
| 295 | /// |
| 296 | /// This does not modify tick producer/formatter settings. |
| 297 | pub fn set_x_axis_scale(&mut self, scale: AxisScale) { |
| 298 | self.x_axis_scale = scale; |
| 299 | self.data_version = self.data_version.wrapping_add(1); |
| 300 | } |