| Crates.io | iced_plot |
| lib.rs | iced_plot |
| version | 0.2.0 |
| created_at | 2025-12-16 05:45:44.851007+00 |
| updated_at | 2026-01-18 19:09:55.044641+00 |
| description | A GPU-accelerated plotting widget for Iced. |
| homepage | https://github.com/donkeyteethUX/iced_plot/ |
| repository | https://github.com/donkeyteethUX/iced_plot/ |
| max_upload_size | |
| id | 1987278 |
| size | 553,755 |
A GPU-accelerated plotting widget for Iced.
use iced_plot::{Color, PlotWidgetBuilder, Series};
let series = Series::circles((0..100).map(|i| [i as f64, i as f64]).collect(), 2.0)
.with_color(Color::from_rgb(0.2, 0.6, 1.0))
.with_label("points");
PlotWidgetBuilder::new()
.with_x_label("x")
.with_y_label("y")
.add_series(series)
.build()
.unwrap();
See the examples/ directory for more.