[][src]Struct vega_lite_3::BaseLegendLayout

pub struct BaseLegendLayout {
    pub anchor: Option<TitleAnchor>,
    pub bounds: Option<LayoutBounds>,
    pub center: Option<BottomCenter>,
    pub direction: Option<Direction>,
    pub margin: Option<Margin>,
    pub offset: Option<Margin>,
}

Fields

anchor: Option<TitleAnchor>

The anchor point for legend orient group layout.

bounds: Option<LayoutBounds>

The bounds calculation to use for legend orient group layout.

center: Option<BottomCenter>

A flag to center legends within a shared orient group.

direction: Option<Direction>

The layout direction for legend orient group layout.

margin: Option<Margin>

The pixel margin between legends within a orient group.

offset: Option<Margin>

The pixel offset from the chart body for a legend orient group.

Trait Implementations

impl Clone for BaseLegendLayout[src]

impl Debug for BaseLegendLayout[src]

impl Default for BaseLegendLayout[src]

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

impl Serialize for BaseLegendLayout[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.