Skip to main content

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 line;
8pub mod scatter;
9pub mod bar;
10pub mod histogram;
11pub mod fill_between;
12pub mod step;
13pub mod stem;
14pub mod boxplot;
15pub mod errorbar;
16pub mod heatmap;
17pub mod pie;
18pub mod violin;
19pub mod contour;
20pub mod polar;
21pub mod hexbin;
22pub mod waterfall;