pub enum SeriesLabelPosition {
    UpperLeft,
    MiddleLeft,
    LowerLeft,
    UpperMiddle,
    MiddleMiddle,
    LowerMiddle,
    UpperRight,
    MiddleRight,
    LowerRight,
    Coordinate(i32i32),
}
Expand description

Useful to specify the position of the series label.

See ChartContext::configure_series_labels() for more information and examples.

Variants

UpperLeft

Places the series label at the upper left

MiddleLeft

Places the series label at the middle left

LowerLeft

Places the series label at the lower left

UpperMiddle

Places the series label at the upper middle

MiddleMiddle

Places the series label at the middle middle

LowerMiddle

Places the series label at the lower middle

UpperRight

Places the series label at the upper right

MiddleRight

Places the series label at the middle right

LowerRight

Places the series label at the lower right

Coordinate(i32i32)

Places the series label at the specific location in backend coordinates

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.