Set the Y-axis range for value mapping.
(mut self, min: f32, max: f32)
| 65 | |
| 66 | /// Set the Y-axis range for value mapping. |
| 67 | pub fn y_range(mut self, min: f32, max: f32) -> Self { |
| 68 | self.y_range = (min, max); |
| 69 | self |
| 70 | } |
| 71 | |
| 72 | /// Set the color gradient for per-character coloring. |
| 73 | pub fn gradient(mut self, gradient: ColorGradient) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected