Material Bread logo

Chart.js types API in Rust

crates.io docs.rs

In Alpha, types added as needed, feel free to PR.

How to use

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

Cargo.toml:

toml [dependencies.chart-js-rs] git = "https://github.com/Billy-Sheppard/chart-js-rs"

Rust:

```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);

```

Your html file:

```html

...

...

```