pub struct LayerElement {
Show 14 fields pub data: RemovableValue<UrlData>, pub description: Option<String>, pub encoding: Option<LayerEncoding>, pub height: Option<HeightUnion>, pub layer: Option<Vec<LayerElement>>, pub name: Option<String>, pub projection: Option<Box<Projection>>, pub resolve: Option<Box<Resolve>>, pub title: Option<TitleUnion>, pub transform: Option<Vec<Transform>>, pub view: Option<Box<ViewBackground>>, pub width: Option<HeightUnion>, pub mark: Option<AnyMark>, pub selection: Option<HashMap<String, SelectionDef>>,
}
Expand description

A specification of the view that gets repeated.

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.

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<HeightUnion>

The height of a visualization.

  • For a plot with a continuous y-field, height should be a number. - For a plot with either a discrete y-field or no y-field, height can be either a number indicating a fixed height or an object in the form of {step: number} defining the height per discrete step. (No y-field is equivalent to having one discrete step.) - To enable responsive sizing on height, it should be set to "container".

Default value: Based on config.view.continuousHeight for a plot with a continuous y-field and config.view.discreteHeight otherwise.

Note: For plots with row and column channels, this represents the height of a single view and the "container" option cannot be used.

See also: height documentation.

Deprecated: Please avoid using width in a unit spec that’s a part of a layer spec.

§layer: Option<Vec<LayerElement>>

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<Box<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<Box<Resolve>>

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

§title: Option<TitleUnion>

Title for the plot.

§transform: Option<Vec<Transform>>

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

§view: Option<Box<ViewBackground>>

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

Default value: none (transparent)

Deprecated: Please avoid using width in a unit spec that’s a part of a layer spec.

§width: Option<HeightUnion>

The width of a visualization.

  • For a plot with a continuous x-field, width should be a number. - For a plot with either a discrete x-field or no x-field, width can be either a number indicating a fixed width or an object in the form of {step: number} defining the width per discrete step. (No x-field is equivalent to having one discrete step.) - To enable responsive sizing on width, it should be set to "container".

Default value: Based on config.view.continuousWidth for a plot with a continuous x-field and config.view.discreteWidth otherwise.

Note: For plots with row and column channels, this represents the width of a single view and the "container" option cannot be used.

See also: width documentation.

Deprecated: Please avoid using width in a unit spec that’s a part of a layer spec.

§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§

source§

impl Clone for LayerElement

source§

fn clone(&self) -> LayerElement

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LayerElement

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LayerElement

source§

fn default() -> LayerElement

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for LayerElement

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for LayerElement

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,