Set how this reference line interprets or converts its x value before drawing. For normal data values, conversion runs before the plot's x-axis scale. `Transform::axes()` uses normalized plot positions instead.
(mut self, transform: Transform)
| 50 | /// For normal data values, conversion runs before the plot's x-axis scale. |
| 51 | /// `Transform::axes()` uses normalized plot positions instead. |
| 52 | pub fn with_transform(mut self, transform: Transform) -> Self { |
| 53 | self.transform = Some(transform); |
| 54 | self |
| 55 | } |
| 56 | |
| 57 | /// Interpret the x position as a normalized plot coordinate. |
| 58 | pub fn with_axes_transform(mut self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected