orbital-charts 0.1.1

Chart components for Orbital and Leptos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cartesian and radial plot renderers.

mod area_plot;
mod bar_plot;
mod heatmap_plot;
mod line_plot;
mod pie_plot;
mod scatter_plot;
mod sparkline_plot;

pub use area_plot::*;
pub use bar_plot::*;
pub use heatmap_plot::*;
pub use line_plot::*;
pub use pie_plot::*;
pub use scatter_plot::*;
pub use sparkline_plot::*;