In Alpha, types added as needed, feel free to PR.
Check out the example folder for some code examples. The example uses WebAssembly and the dominator crate to produce charts. This library should be compatible with any WASM/HTML library.
The compiled webpage can be found here: https://billy-sheppard.github.io/chart-js-rs/examples/index.html
toml
[dependencies.chart-js-rs]
git = "https://github.com/Billy-Sheppard/chart-js-rs"
```rust let id = "[YOUR CHART ID HERE]"; let chart = chartjsrs::scatter::Scatter { id: id.tostring(), r#type: "scatter".into(), options: ChartOptions { .. }, data: Dataset { .. }, }; // to use any callbacks or functions you use rendermutate and refer to the JS below chart.tochart().rendermutate(&id);
// else use render
chart.to_chart().render(id);
```
```html
......
```