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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Chart control components.
//!
//! Provides:
//! - Floating zoom/scale controls at bottom-right of chart
//! - Pane controls (maximize, minimize, close) at top-right of each pane

mod actions;
mod config;
mod control_bar;
mod pane_controls;

pub use actions::ChartControlAction;
pub use config::ChartControlBarConfig;
pub use control_bar::{ChartControlBar, ChartControlBarState};
pub use pane_controls::{PaneControlAction, PaneControls, PaneControlsConfig, PaneId};