pub struct IntervalSelectionConfigBuilder { /* private fields */ }
Expand description

Implementations§

source§

impl IntervalSelectionConfigBuilder

source

pub fn bind<VALUE: Into<Bind>>(&mut self, value: VALUE) -> &mut Self

Establishes a two-way binding between the interval selection and the scales used within the same view. This allows a user to interactively pan and zoom the view.

See also: bind documentation.

source

pub fn clear<VALUE: Into<ClearUnion>>(&mut self, value: VALUE) -> &mut Self

Clears the selection, emptying it of all values. Can be a Event Stream or false to disable.

Default value: dblclick.

See also: clear documentation.

source

pub fn empty<VALUE: Into<Empty>>(&mut self, value: VALUE) -> &mut Self

By default, all data values are considered to lie within an empty selection. When set to none, empty selections contain no data values.

source

pub fn encodings<VALUE: Into<Vec<SingleDefUnitChannel>>>( &mut self, value: VALUE ) -> &mut Self

An array of encoding channels. The corresponding data field values must match for a data tuple to fall within the selection.

See also: encodings documentation.

source

pub fn fields<VALUE: Into<Vec<String>>>(&mut self, value: VALUE) -> &mut Self

An array of field names whose values must match for a data tuple to fall within the selection.

See also: fields documentation.

source

pub fn init<VALUE: Into<HashMap<String, Vec<SelectionInitInterval>>>>( &mut self, value: VALUE ) -> &mut Self

Initialize the selection with a mapping between projected channels or field names and arrays of initial values.

See also: init documentation.

source

pub fn mark<VALUE: Into<BrushConfig>>(&mut self, value: VALUE) -> &mut Self

An interval selection also adds a rectangle mark to depict the extents of the interval. The mark property can be used to customize the appearance of the mark.

See also: mark documentation.

source

pub fn on<VALUE: Into<OnUnion>>(&mut self, value: VALUE) -> &mut Self

A Vega event stream (object or selector) that triggers the selection. For interval selections, the event stream must specify a start and end.

source

pub fn resolve<VALUE: Into<SelectionResolution>>( &mut self, value: VALUE ) -> &mut Self

With layered and multi-view displays, a strategy that determines how selections’ data queries are resolved when applied in a filter transform, conditional encoding rule, or scale domain.

See also: resolve documentation.

source

pub fn translate<VALUE: Into<Translate>>(&mut self, value: VALUE) -> &mut Self

When truthy, allows a user to interactively move an interval selection back-and-forth. Can be true, false (to disable panning), or a Vega event stream definition which must include a start and end event to trigger continuous panning.

Default value: true, which corresponds to [mousedown, window:mouseup] > window:mousemove! which corresponds to clicks and dragging within an interval selection to reposition it.

See also: translate documentation.

source

pub fn zoom<VALUE: Into<Translate>>(&mut self, value: VALUE) -> &mut Self

When truthy, allows a user to interactively resize an interval selection. Can be true, false (to disable zooming), or a Vega event stream definition. Currently, only wheel events are supported.

Default value: true, which corresponds to wheel!.

See also: zoom documentation.

source

pub fn build( &self ) -> Result<IntervalSelectionConfig, IntervalSelectionConfigBuilderError>

Builds a new IntervalSelectionConfig.

Errors

If a required field has not been initialized.

Trait Implementations§

source§

impl Clone for IntervalSelectionConfigBuilder

source§

fn clone(&self) -> IntervalSelectionConfigBuilder

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 Default for IntervalSelectionConfigBuilder

source§

fn default() -> Self

Returns the “default value” for a type. 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.