(mut self, label_formatter: impl Fn(&HoverPosition<'_>) -> Option<String> + 'a)
| 418 | /// ``` |
| 419 | #[inline] |
| 420 | pub fn label_formatter(mut self, label_formatter: impl Fn(&HoverPosition<'_>) -> Option<String> + 'a) -> Self { |
| 421 | self.label_formatter = Some(Box::new(label_formatter)); |
| 422 | self |
| 423 | } |
| 424 | |
| 425 | /// Show the pointer coordinates in the plot. |
| 426 | #[inline] |