Set the horizontal range (x-axis)
(mut self, start: f32, end: f32)
| 70 | |
| 71 | /// Set the horizontal range (x-axis) |
| 72 | pub fn x_range(mut self, start: f32, end: f32) -> Self { |
| 73 | self.x_range = (start, end); |
| 74 | self |
| 75 | } |
| 76 | |
| 77 | /// Set the vertical range (y-axis) |
| 78 | pub fn y_range(mut self, min: f32, max: f32) -> Self { |
no outgoing calls