Add a hover point to the plot.
(&mut self, point_id: PointId)
| 483 | for (i, position) in series.positions.iter().enumerate() { |
| 484 | let distance = (position[0] - x).abs(); |
| 485 | if distance < min_distance { |
| 486 | min_distance = distance; |
| 487 | nearest_point = Some(PointId { |
| 488 | series_id, |
| 489 | point_index: i, |
| 490 | }); |
no outgoing calls
no test coverage detected