Struct vega_lite::LayerSpec

source ·
pub struct LayerSpec {
Show 13 fields pub data: Option<Data>, pub description: Option<String>, pub encoding: Option<SpecEncoding>, 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 width: Option<f64>, pub mark: Option<AnyMark>, pub selection: Option<HashMap<String, SelectionDef>>,
}
Expand description

Layer Spec with encoding and projection

Unit spec that can have a composite mark.

Fields§

§data: Option<Data>

An object describing the data source

§description: Option<String>

Description of this mark for commenting purpose.

§encoding: Option<SpecEncoding>

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.

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

§title: Option<Title>

Title for the plot.

§transform: Option<Vec<Transform>>

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

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

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

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.