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
//! Text and annotation tool rendering implementations
//!
//! Split into submodules for maintainability:
//! - `text` - Text label and anchored text rendering
//! - `notes` - Note, anchored note, and flag note rendering
//! - `callout` - Callout and comment rendering
//! - `labels` - Price label and price note rendering
//! - `table` - Table rendering
//! - `signpost` - Signpost rendering

mod callout;
mod labels;
mod notes;
mod signpost;
mod table;
mod text;