rstk 0.3.0

A Rust binding for the Tk graphics toolkit. Tk is suitable for creating simple GUI programs or interactive graphical displays. This library supports a large portion of the Tk API, in a generally rust-like style.
Documentation
//! 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::*;