1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Plotchart wrapper - draws different kinds of charts on a canvas.
//!
//! For more complete descriptions, see the original plotchart
//! [documentation](https://core.tcl-lang.org/tklib/doc/trunk/embedded/www/tklib/files/modules/plotchart/plotchart.html).
pub mod bar_chart;
pub use bar_chart::*;
pub mod box_plot;
pub use box_plot::*;
pub mod gantt_chart;
pub use gantt_chart::*;
pub mod histogram;
pub use histogram::*;
pub mod isometric_plot;
pub use isometric_plot::*;
pub mod pie_chart;
pub use pie_chart::*;
pub mod plotchart;
pub use plotchart::*;
pub mod polar_plot;
pub use polar_plot::*;
pub mod radial_chart;
pub use radial_chart::*;
pub mod right_axis;
pub use right_axis::*;
pub mod status_timeline;
pub use status_timeline::*;
pub mod ternary_diagram;
pub use ternary_diagram::*;
pub mod threed_bar_chart;
pub use threed_bar_chart::*;
pub mod threed_plot;
pub use threed_plot::*;
pub mod threed_ribbon_plot;
pub use threed_ribbon_plot::*;
pub mod time_chart;
pub use time_chart::*;
pub mod tx_plot;
pub use tx_plot::*;
pub mod xy_plots;
pub use xy_plots::*;