plotkit-core 0.1.1

Core types and logic for the plotkit plotting library
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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;