quill 0.2.0

A lightweight Rust plotting library for creating simple SVG 2D plots
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod axis;
mod grid;
mod label;
mod legend;
mod margin;
mod tick;
mod title;

pub use axis::AxisConfig;
pub use grid::GridConfig;
pub use label::LabelConfig;
pub use legend::LegendConfig;
pub use margin::Margin;
pub use tick::TickConfig;
pub use title::TitleConfig;