plotkit-core 0.2.0

Core types and logic for the plotkit plotting library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Chart builder methods for configuring visual properties.
//!
//! Each chart type (line, scatter, bar, histogram, fill_between) has builder
//! methods implemented directly on its artist type.

pub mod line;
pub mod scatter;
pub mod bar;
pub mod histogram;
pub mod fill_between;
pub mod step;
pub mod stem;
pub mod boxplot;
pub mod errorbar;
pub mod heatmap;