graplot 0.1.22

Experimental plotting library based on macroquad
Documentation
1
2
3
4
5
6
7
8
use graplot::Bar;

fn main() {
    let mut bar = Bar::new(["Ferris", "Stefan", "Test"], &[100., 200., 700.]);
    bar.set_title("title");
    bar.set_xlabel("test");
    bar.show();
}