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)
| 201 | /// Set the y-axis limits (min, max) for the plot. |
| 202 | /// If set, these will override autoscaling for the y-axis. |
| 203 | pub fn with_y_lim(mut self, min: f64, max: f64) -> Self { |
| 204 | self.y_lim = Some((min, max)); |
| 205 | self |
| 206 | } |
| 207 | |
| 208 | /// Set the y-axis scale mode. |
| 209 | /// |
no outgoing calls
no test coverage detected