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
//! Timeframe toolbar
//!
//! Contains time scale controls, range presets, and date navigation.

pub mod actions;
pub mod date_picker;
pub mod date_range_parser;
pub mod range_switcher;
pub mod state;
pub mod timeframe_bar;
pub mod toolbar;
pub mod trading_panel_row;

pub use actions::TimeframeToolbarAction;
pub use date_picker::*;
pub use range_switcher::*;
pub use state::{SessionType, TimeframeToolbarState};
pub use timeframe_bar::*;
pub use toolbar::{TimeframeToolbar, TimeframeToolbarConfig};
pub use trading_panel_row::{TradingPanelRow, TradingPanelRowAction, TradingPanelRowConfig};