[][src]Struct vega_lite_4::ViewBackgroundBuilder

pub struct ViewBackgroundBuilder { /* fields omitted */ }

Builder for ViewBackground.

Implementations

impl ViewBackgroundBuilder[src]

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 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 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 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 style<VALUE: Into<LegendText>>(&mut self, value: VALUE) -> &mut Self[src]

A string or array of strings indicating the name of custom styles to apply to the view background. A style is a named collection of mark property defaults defined within the style configuration. If style is an array, later styles will override earlier styles.

Default value: "cell" Note: Any specified view background properties will augment the default style.

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

Builds a new ViewBackground.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for ViewBackgroundBuilder[src]

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