[][src]Struct vega_lite_4::ViewConfigBuilder

pub struct ViewConfigBuilder { /* fields omitted */ }

Builder for ViewConfig.

Implementations

impl ViewConfigBuilder[src]

pub fn clip<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self[src]

Whether the view should be clipped.

pub fn continuous_height<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

The default height when the plot has a continuous y-field for x or latitude, or has arc marks.

Default value: 200

pub fn continuous_width<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

The default width when the plot has a continuous field for x or longitude, or has arc marks.

Default value: 200

pub fn corner_radius<VALUE: Into<CornerRadiusUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn cursor<VALUE: Into<Cursor>>(&mut self, value: VALUE) -> &mut Self[src]

The mouse cursor used over the view. Any valid CSS cursor type can be used.

pub fn discrete_height<VALUE: Into<DiscreteHeightUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The default height when the plot has non arc marks and either a discrete y-field or no y-field. The 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.

Default value: a step size based on config.view.step.

pub fn discrete_width<VALUE: Into<DiscreteWidthUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The default width when the plot has non-arc marks and either a discrete x-field or no x-field. The 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.

Default value: a step size based on config.view.step.

pub fn fill<VALUE: Into<Color>>(&mut self, value: VALUE) -> &mut Self[src]

The fill color.

Default value: undefined

pub fn fill_opacity<VALUE: Into<Opacity>>(&mut self, value: VALUE) -> &mut Self[src]

pub fn height<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

Default height

Deprecated: Since Vega-Lite 4.0. Please use continuousHeight and discreteHeight instead.

pub fn opacity<VALUE: Into<CornerRadiusUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The overall opacity (value between [0,1]).

Default value: 0.7 for non-aggregate plots with point, tick, circle, or square marks or layered bar charts and 1 otherwise.

pub fn step<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

Default step size for x-/y- discrete fields.

pub fn stroke<VALUE: Into<RemovableValue<Color>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The stroke color.

Default value: "#ddd"

pub fn stroke_cap<VALUE: Into<Cap>>(&mut self, value: VALUE) -> &mut Self[src]

pub fn stroke_dash<VALUE: Into<StrokeDashUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn stroke_dash_offset<VALUE: Into<CornerRadiusUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn stroke_join<VALUE: Into<StrokeJoinUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn stroke_miter_limit<VALUE: Into<CornerRadiusUnion>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn stroke_opacity<VALUE: Into<Opacity>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

pub fn stroke_width<VALUE: Into<FontSize>>(&mut self, value: VALUE) -> &mut Self[src]

pub fn width<VALUE: Into<f64>>(&mut self, value: VALUE) -> &mut Self[src]

Default width

Deprecated: Since Vega-Lite 4.0. Please use continuousWidth and discreteWidth instead.

pub fn build(&self) -> Result<ViewConfig, String>[src]

Builds a new ViewConfig.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for ViewConfigBuilder[src]

impl Default for ViewConfigBuilder[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> 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.