plotkit_core/charts/mod.rs
1//! Chart builder methods for configuring visual properties.
2//!
3//! Each chart type (line, scatter, bar, histogram, fill_between, step, stem,
4//! boxplot, errorbar, heatmap, pie, violin, contour, polar, hexbin, waterfall)
5//! has builder methods implemented directly on its artist type.
6
7pub mod bar;
8pub mod boxplot;
9pub mod contour;
10pub mod errorbar;
11pub mod fill_between;
12pub mod heatmap;
13pub mod hexbin;
14pub mod histogram;
15pub mod line;
16pub mod pie;
17pub mod polar;
18pub mod scatter;
19pub mod stem;
20pub mod step;
21pub mod violin;
22pub mod waterfall;