This crate can be used by adding egui-plotter
to the dependencies in your
project's Cargo.toml
.
toml
[dependencies]
egui-plotter = "0.1.0"
It is also heavily recommended you disable feathering in your egui context, as not only does it slow things down but it causes artifacts with certain plots.
See line 24 example below to see how to disable feathering.
Here's a simple plotter example being run on native eframe. Derived from eframe and plotters.
```rust use eframe::egui::{self, CentralPanel, Visuals}; use egui_plotter::EguiBackend; use plotters::prelude::*;
fn main() { let nativeoptions = eframe::NativeOptions::default(); eframe::runnative("My egui App", native_options, Box::new(|cc| Box::new(MyEguiApp::new(cc)))).unwrap(); }
struct MyEguiApp {}
impl MyEguiApp { fn new(cc: &eframe::CreationContext<'>) -> Self { // Disable feathering as it causes artifacts let context = &cc.eguictx;
context.tessellation_options_mut(|tess_options| {
tess_options.feathering = false;
});
// Also enable light mode
context.set_visuals(Visuals::light());
Self::default()
}
}
impl eframe::App for MyEguiApp { fn update(&mut self, ctx: &egui::Context, frame: &mut eframe::Frame) { CentralPanel::default().show(ctx, |ui| { let root = EguiBackend::new(ui).intodrawingarea(); root.fill(&WHITE).unwrap(); let mut chart = ChartBuilder::on(&root) .caption("y=x^2", ("sans-serif", 50).intofont()) .margin(5) .xlabelareasize(30) .ylabelareasize(30) .buildcartesian2d(-1f32..1f32, -0.1f32..1f32).unwrap();
chart.configure_mesh().draw().unwrap();
chart
.draw_series(LineSeries::new(
(-50..=50).map(|x| x as f32 / 50.0).map(|x| (x, x * x)),
&RED,
)).unwrap()
.label("y = x^2")
.legend(|(x, y)| PathElement::new(vec![(x, y), (x + 20, y)], &RED));
chart
.configure_series_labels()
.background_style(&WHITE.mix(0.8))
.border_style(&BLACK)
.draw().unwrap();
root.present().unwrap();
});
}
} ```