egui-charts 0.2.0

High-performance financial charting engine for egui — candlesticks, 95 drawing tools, 130+ indicators, and a full design-token theme system
Documentation
//! Bottom toolbar utility btns.
//!
//! These are the action btns at the bottom of the left toolbar:
//! - Measure tool
//! - Zoom in/out
//! - Magnet mode with dropdown
//! - Keep drawing toggle
//! - Lock drawings toggle
//! - Hide/show objects dropdown
//! - Remove objects dropdown
//! - Favorites toggle

mod favorites;
mod hide_menu;
mod lock;
mod magnet;
mod measure;
mod remove_menu;
mod stay_in_drawing;
mod templates;
mod zoom;

pub use favorites::FavoritesButton;
pub use hide_menu::HideMenu;
pub use lock::LockButton;
pub use magnet::MagnetButton;
pub use measure::MeasureButton;
pub use remove_menu::RemoveMenu;
pub use stay_in_drawing::StayInDrawingButton;
pub use templates::TemplatesButton;
pub use zoom::{ZoomInButton, ZoomOutButton};