Transform the y coordinate of the overlay anchor.
(mut self, transform: Transform)
| 66 | |
| 67 | /// Transform the y coordinate of the overlay anchor. |
| 68 | pub fn with_transform_y(mut self, transform: Transform) -> Self { |
| 69 | self.anchor_position_transform.y = Some(transform); |
| 70 | self |
| 71 | } |
| 72 | |
| 73 | /// Interpret the overlay anchor as normalized plot coordinates. |
| 74 | pub fn with_axes_transform(mut self) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected