[][src]Struct vega_lite_3::LayerSpec

pub struct LayerSpec {
    pub data: RemovableValue<UrlData>,
    pub description: Option<String>,
    pub encoding: Option<LayerEncoding>,
    pub height: Option<f64>,
    pub layer: Option<Vec<LayerSpec>>,
    pub name: Option<String>,
    pub projection: Option<Projection>,
    pub resolve: Option<Resolve>,
    pub title: Option<Title>,
    pub transform: Option<Vec<Transform>>,
    pub view: Option<ViewBackground>,
    pub width: Option<f64>,
    pub mark: Option<AnyMark>,
    pub selection: Option<HashMap<String, SelectionDef>>,
}

A full layered plot specification, which may contains encoding and projection properties that will be applied to underlying unit (single-view) specifications.

A unit specification, which can contain either primitive marks or composite marks.

Base interface for a unit (single-view) specification.

Fields

data: RemovableValue<UrlData>

An object describing the data source. Set to null to ignore the parent's data source. If no data is set, it is derived from the parent.

description: Option<String>

Description of this mark for commenting purpose.

encoding: Option<LayerEncoding>

A shared key-value mapping between encoding channels and definition of fields in the underlying layers.

A key-value mapping between encoding channels and definition of fields.

height: Option<f64>

The height of a visualization.

Default value:

Note: For plots with row and column channels, this represents the height of a single view.

See also: The documentation for width and height contains more examples.

layer: Option<Vec<LayerSpec>>

Layer or single view specifications to be layered.

Note: Specifications inside layer cannot use row and column channels as layering facet specifications is not allowed. Instead, use the facet operator and place a layer inside a facet.

name: Option<String>

Name of the visualization for later reference.

projection: Option<Projection>

An object defining properties of the geographic projection shared by underlying layers.

An object defining properties of geographic projection, which will be applied to shape path for "geoshape" marks and to latitude and "longitude" channels for other marks.

resolve: Option<Resolve>

Scale, axis, and legend resolutions for view composition specifications.

title: Option<Title>

Title for the plot.

transform: Option<Vec<Transform>>

An array of data transformations such as filter and new field calculation.

view: Option<ViewBackground>

An object defining the view background's fill and stroke.

Default value: none (transparent)

width: Option<f64>

The width of a visualization.

Default value: This will be determined by the following rules:

Note: For plots with row and column channels, this represents the width of a single view.

See also: The documentation for width and height contains more examples.

mark: Option<AnyMark>

A string describing the mark type (one of "bar", "circle", "square", "tick", "line", "area", "point", "rule", "geoshape", and "text") or a mark definition object.

selection: Option<HashMap<String, SelectionDef>>

A key-value mapping between selection names and definitions.

Trait Implementations

impl Clone for LayerSpec[src]

impl Debug for LayerSpec[src]

impl Default for LayerSpec[src]

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

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