4 releases (2 breaking)
0.3.0 | Feb 16, 2024 |
---|---|
0.2.0 | Dec 12, 2022 |
0.1.1 | Nov 5, 2022 |
0.1.0 | Nov 3, 2022 |
#260 in Visualization
232 downloads per month
14KB
yew-plotly
Example
use yew::prelude::*;
use yew_plotly::plotly::common::Mode;
use yew_plotly::plotly::{Plot, Scatter};
use yew_plotly::Plotly;
#[function_component]
fn App() -> Html {
let mut plot = Plot::new();
let x_values = vec![1, 2, 3];
let y_values = vec![1, 3, 2];
let trace = Scatter::new(x_values, y_values)
.mode(Mode::LinesMarkersText)
.name("Scatter");
plot.add_trace(trace);
html! { <Plotly plot={plot}/> }
}
fn main() {
yew::Renderer::<App>::new().render();
}
Setup
Load plotly.js in index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Yew App</title>
<script src="https://cdn.plot.ly/plotly-2.16.1.min.js"></script>
</head>
</html>
Install yew-plotly
cargo add yew-plotly
Links
Dependencies
~18–27MB
~341K SLoC