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
//! Widget bar
//!
//! Contains alerts, object tree, and other panels.

pub mod actions;
pub mod panels;
pub mod state;
pub mod tabs;
pub mod toolbar;

// Core toolbar exports
pub use actions::RightToolbarAction;
pub use state::RightToolbarState;

// Toolbar and tabs exports
pub use tabs::{RightPanelAction, RightPanelTab, RightPanelTabs, RightPanelTabsConfig};
pub use toolbar::{RightBarIcon, WidgetBar, WidgetBarAction, WidgetBarConfig};

// Panel exports
pub use panels::*;