gust 0.1.4

A small charting library for generating d3 and html charts using Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14

/*!
 
The backend module handles the actual Rust structs that are used to model different Vega charts
 */



pub mod elements;
pub mod bar_chart;
pub mod stacked_bar_chart;
pub mod line_chart;
pub mod traits;
pub mod general;