(value: alignment::Horizontal)
| 158 | } |
| 159 | |
| 160 | fn horizontal_label(value: alignment::Horizontal) -> &'static str { |
| 161 | match value { |
| 162 | alignment::Horizontal::Left => "Left", |
| 163 | alignment::Horizontal::Center => "Center", |
| 164 | alignment::Horizontal::Right => "Right", |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | fn plot_widget() -> PlotWidget { |
| 169 | let line = Series::line_only( |
nothing calls this directly
no outgoing calls
no test coverage detected