Enable or disable point highlighting while hovering.
(mut self, enabled: bool)
| 104 | |
| 105 | /// Enable or disable point highlighting while hovering. |
| 106 | pub fn with_highlight_on_hover(mut self, enabled: bool) -> Self { |
| 107 | self.highlight_on_hover = Some(enabled); |
| 108 | self |
| 109 | } |
| 110 | |
| 111 | /// Provide a custom highlighter for pick point. |
| 112 | pub fn with_pick_highlight_provider<F>(mut self, provider: F) -> Self |
nothing calls this directly
no outgoing calls
no test coverage detected