[][src]Module plotlib::line

Plot line charts

Examples

// y=x^2 between 0 and 10
let l = Line::new(&[(0., 1.), (2., 1.5), (3., 1.2), (4., 1.1)]);
let v = ContinuousView::new().add(&l);

Structs

Line
Style