Disable background grid lines and ticks on both axes.
(self)
| 335 | pub fn add_hline(mut self, hline: HLine) -> Self { |
| 336 | self.hlines.push(hline); |
| 337 | self |
| 338 | } |
| 339 | |
| 340 | /// Disable background grid lines and ticks on both axes. |
| 341 | pub fn without_grid(self) -> Self { |
| 342 | self.with_x_tick_producer(|_, _, _| Vec::new()) |
| 343 | .with_y_tick_producer(|_, _, _| Vec::new()) |
no test coverage detected