Set the overlay's vertical position relative to its anchor.
(mut self, vertical: Vertical)
| 94 | |
| 95 | /// Set the overlay's vertical position relative to its anchor. |
| 96 | pub fn align_to_anchor_vertical(mut self, vertical: Vertical) -> Self { |
| 97 | self.align_to_anchor_vertical = vertical; |
| 98 | self |
| 99 | } |
| 100 | |
| 101 | /// Map the overlay's message type into another message type. |
| 102 | pub fn map<B>(self, f: impl Fn(Message) -> B + 'a) -> PlotOverlay<'a, B> |
nothing calls this directly
no outgoing calls
no test coverage detected