(&self, cursor: mouse::Cursor)
| 471 | Some(producer) => producer(min_y, max_y, self.bounds.height.into()), |
| 472 | None => Vec::new(), |
| 473 | }; |
| 474 | |
| 475 | self.y_ticks.clear(); |
| 476 | for tick in y_tick_values { |
| 477 | let Some(tick_plot) = self.y_axis_scale.data_to_plot(tick.value) else { |
| 478 | continue; |
| 479 | }; |
| 480 | // Convert world position to screen position |
no test coverage detected