1 unstable release

0.0.1 Oct 2, 2022

#42 in #charts


Used in twang

MIT/Apache

40KB
1K SLoC

Splotch

Plot data in footile

Documentation


lib.rs:

Plot data in footile

Example Line Plot

use splotch::{plot, Chart, Page, axis::{Horizontal, Vertical}};
use pointy::BBox;

let data = vec![(13.0, 74.0), (111.0, 37.0), (125.0, 52.0), (190.0, 66.0)];
let domain = {
    let mut domain = BBox::new(data.iter().cloned());
    domain.extend([0.0, 200.0]);
    domain
};
let plot = plot::Line::new("Series", &domain, &data);
let page = Page::default().with_chart(
    Chart::default()
        .with_title("Line Plot")
        .with_axis(Horizontal::new(domain).with_name("X Axis Name"))
        .with_axis(Vertical::new(domain).with_name("Y Axis Name").on_right())
        .with_plot(&plot),
);
println!("{}", page);

Dependencies

~475KB