plotkit-core 0.5.0

Core types and logic for the plotkit plotting library
Documentation
//! Chart builder methods for configuring visual properties.
//!
//! Each chart type (line, scatter, bar, histogram, fill_between, step, stem,
//! boxplot, errorbar, heatmap, pie, violin, contour, polar, hexbin, waterfall)
//! 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;
pub mod pie;
pub mod violin;
pub mod contour;
pub mod polar;
pub mod hexbin;
pub mod waterfall;