(title: &'static str, plot: Element<'a, Message>)
| 57 | } |
| 58 | |
| 59 | fn plot_panel<'a>(title: &'static str, plot: Element<'a, Message>) -> Element<'a, Message> { |
| 60 | column![ |
| 61 | text(title).size(18), |
| 62 | container(plot).width(Length::Fill).height(Length::Fill), |
| 63 | ] |
| 64 | .spacing(8) |
| 65 | .width(Length::Fill) |
| 66 | .height(Length::Fill) |
| 67 | .into() |
| 68 | } |
| 69 | |
| 70 | fn marker_plot(strategy: PlotRenderStrategy) -> PlotWidget { |
| 71 | let markers = [ |
nothing calls this directly
no outgoing calls
no test coverage detected