Added stem plots and legend entry hover checking

This commit is contained in:
4bb4 2021-01-31 12:40:13 +01:00
parent 2c56bd9803
commit 21aa28591c
7 changed files with 113 additions and 10 deletions

View file

@ -3,6 +3,7 @@ pub mod heatmaps;
pub mod line_plots;
pub mod scatter_plots;
pub mod stairs_plots;
mod stem_plots;
pub mod text_plots;
use imgui::{im_str, Condition, Ui, Window};
@ -43,5 +44,9 @@ pub fn show_demos(ui: &Ui, plot_ui: &PlotUi) {
ui.separator();
ui.text(im_str!("Heatmaps:"));
heatmaps::show_demo_headers(ui, plot_ui);
ui.separator();
ui.text(im_str!("Stem plots:"));
stem_plots::show_demo_headers(ui, plot_ui);
});
}