| 54 | |
| 55 | #[derive(Debug, Clone, PartialEq)] |
| 56 | pub struct TooltipUiPayload { |
| 57 | /// screen coordinates of the tooltip. |
| 58 | /// `screen_xy = None` means the tooltip is outside of the plot widget |
| 59 | pub screen_xy: Option<[f32; 2]>, |
| 60 | pub text: String, |
| 61 | } |
| 62 | |
| 63 | /// Payload for the small cursor-position overlay shown in the corner. |
| 64 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected