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