#[repr(u32)]pub enum PlotColorElement {
Show 24 variants
Line = 0,
Fill = 1,
MarkerOutline = 2,
MarkerFill = 3,
ErrorBar = 4,
FrameBg = 5,
PlotBg = 6,
PlotBorder = 7,
LegendBackground = 8,
LegendBorder = 9,
LegendText = 10,
TitleText = 11,
InlayText = 12,
XAxis = 13,
XAxisGrid = 14,
YAxis = 15,
YAxisGrid = 16,
YAxis2 = 17,
YAxisGrid2 = 18,
YAxis3 = 19,
YAxisGrid3 = 20,
Selection = 21,
Crosshairs = 22,
Query = 23,
}Expand description
Colorable plot elements
Variants§
Line = 0
Fill = 1
MarkerOutline = 2
MarkerFill = 3
ErrorBar = 4
FrameBg = 5
PlotBg = 6
PlotBorder = 7
LegendBackground = 8
LegendBorder = 9
LegendText = 10
TitleText = 11
InlayText = 12
XAxis = 13
XAxisGrid = 14
YAxis = 15
YAxisGrid = 16
YAxis2 = 17
YAxisGrid2 = 18
YAxis3 = 19
YAxisGrid3 = 20
Selection = 21
Crosshairs = 22
Query = 23
Trait Implementations§
Source§impl Clone for PlotColorElement
impl Clone for PlotColorElement
Source§fn clone(&self) -> PlotColorElement
fn clone(&self) -> PlotColorElement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlotColorElement
impl Debug for PlotColorElement
Source§impl PartialEq for PlotColorElement
impl PartialEq for PlotColorElement
impl Copy for PlotColorElement
impl Eq for PlotColorElement
impl StructuralPartialEq for PlotColorElement
Auto Trait Implementations§
impl Freeze for PlotColorElement
impl RefUnwindSafe for PlotColorElement
impl Send for PlotColorElement
impl Sync for PlotColorElement
impl Unpin for PlotColorElement
impl UnwindSafe for PlotColorElement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more