Set the x-axis limits (min, max) for the plot. If set, these will override autoscaling for the x-axis.
(mut self, min: f64, max: f64)
| 185 | /// Set the x-axis limits (min, max) for the plot. |
| 186 | /// If set, these will override autoscaling for the x-axis. |
| 187 | pub fn with_x_lim(mut self, min: f64, max: f64) -> Self { |
| 188 | self.x_lim = Some((min, max)); |
| 189 | self |
| 190 | } |
| 191 | |
| 192 | /// Set the x-axis scale mode. |
| 193 | /// |
no outgoing calls
no test coverage detected