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 RefUnwindSafe for SeriesLabelPosition
impl Send for SeriesLabelPosition
impl Sync for SeriesLabelPosition
impl Unpin for SeriesLabelPosition
impl UnwindSafe for SeriesLabelPosition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more