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
// Drawing helper functions for Plot SVG rendering

mod axis;
mod data_series;
mod label;
mod legend;
mod ticks_and_grids;

pub use axis::draw_axis_lines;
pub use data_series::draw_data_series;
pub use label::{draw_title, draw_x_label, draw_y_label};
pub use legend::draw_legend;
pub use ticks_and_grids::draw_ticks_and_grids;