(mut self, show_x: bool)
| 268 | /// Show the x-value (e.g. when hovering). Default: `true`. |
| 269 | #[inline] |
| 270 | pub fn show_x(mut self, show_x: bool) -> Self { |
| 271 | self.show_x = show_x; |
| 272 | self |
| 273 | } |
| 274 | |
| 275 | /// Show the y-value (e.g. when hovering). Default: `true`. |
| 276 | #[inline] |