egui-plotter 0.6.0

Simple to use utilties for integrating plotter into egui
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Various type of premade charts.

#[cfg(feature = "timechart")]
mod timedata;
#[cfg(feature = "timechart")]
mod xytime;

#[cfg(feature = "timechart")]
pub use timedata::TimeData;
#[cfg(feature = "timechart")]
pub use xytime::XyTimeData;