()
| 1 | use graplot::{Bar, ORANGE, RED, GREEN, BLUE}; |
| 2 | |
| 3 | fn main() { |
| 4 | let mut bar = Bar::new([("Ferris", RED), ("Stefan", GREEN), ("Test", BLUE)], &[100., 200., 500.,]); |
| 5 | bar.add(("Added", ORANGE), 400.); |
| 6 | bar.set_title("title"); |
| 7 | bar.set_ylabel("test"); |
| 8 | bar.show(); |
| 9 | } |
nothing calls this directly
no test coverage detected