Enable or disable interactive hover/pick behavior for this series.
(mut self, pickable: bool)
| 448 | |
| 449 | /// Enable or disable interactive hover/pick behavior for this series. |
| 450 | pub fn with_pickable(mut self, pickable: bool) -> Self { |
| 451 | self.pickable = pickable; |
| 452 | self |
| 453 | } |
| 454 | |
| 455 | /// Set or change the line style for the series. |
| 456 | pub fn line_style(mut self, style: LineStyle) -> Self { |