pub enum SeriesLabelPosition {
UpperLeft,
MiddleLeft,
LowerLeft,
UpperMiddle,
MiddleMiddle,
LowerMiddle,
UpperRight,
MiddleRight,
LowerRight,
Coordinate(i32, i32),
}
Expand description
Describes where we want to put the series label
Variants§
UpperLeft
MiddleLeft
LowerLeft
UpperMiddle
MiddleMiddle
LowerMiddle
UpperRight
MiddleRight
LowerRight
Coordinate(i32, i32)
Force the series label drawn at the specific location
Auto Trait Implementations§
impl Freeze for SeriesLabelPosition
impl RefUnwindSafe for SeriesLabelPosition
impl Send for SeriesLabelPosition
impl Sync for SeriesLabelPosition
impl Unpin for SeriesLabelPosition
impl UnwindSafe for SeriesLabelPosition
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