orbital-charts 0.1.1

Chart components for Orbital and Leptos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Label location surfaces for series and slice names.

/// Surface where a chart label is rendered.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LabelLocation {
    /// Legend item text.
    Legend,
    /// Tooltip series or slice name.
    Tooltip,
    /// Pie arc label text.
    Arc,
}