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
16
17
//! Drawing properties dialog - modal popup for editing drawing properties.
//!
//! Provides a properties dialog for drawings with tabs:
//! - Style: Color, line width, line style, fill options
//! - Coordinates: Price and time points
//! - Visibility: Timeframe visibility settings
//! - Text: Labels and font settings

mod actions;
mod config;
mod dialog;
mod tabs;

pub use actions::{DrawingId, DrawingLineStyle, DrawingPropertiesAction, DrawingProps};
pub use config::DrawingPropertiesConfig;
pub use dialog::DrawingPropertiesDialog;
pub use tabs::PropertiesTab;