(mut self, highlight: bool)
| 63 | /// If false, the item may still be highlighted via user interaction. |
| 64 | #[inline] |
| 65 | pub fn highlight(mut self, highlight: bool) -> Self { |
| 66 | self.base_mut().highlight = highlight; |
| 67 | self |
| 68 | } |
| 69 | |
| 70 | /// Allowed hovering this item in the plot. Default: `true`. |
| 71 | #[inline] |
no test coverage detected