[][src]Enum vega_lite_4::Baseline

pub enum Baseline {
    Alphabetic,
    Bottom,
    Middle,
    Top,
}

The vertical alignment of the text or ranged marks (area, bar, image, rect, rule). One of "top", "middle", "bottom".

Default value: "middle"

Vertical text baseline of axis tick labels, overriding the default setting for the current axis orientation. Can be "top", "middle", "bottom", or "alphabetic".

Vertical text baseline for axis titles.

Vertical text baseline for the header title. One of "top", "bottom", "middle".

Default value: "middle"

The position of the baseline of legend label, can be "top", "middle", "bottom", or "alphabetic".

Default value: "middle".

Vertical text baseline for legend titles.

Default value: "top".

Vertical text baseline for title and subtitle text. One of "top", "middle", "bottom", or "alphabetic".

Variants

Alphabetic
Bottom
Middle
Top

Trait Implementations

impl Clone for Baseline[src]

impl Debug for Baseline[src]

impl<'de> Deserialize<'de> for Baseline[src]

impl From<Baseline> for TextBaseline[src]

impl Serialize for Baseline[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.