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

Builder for ScaleConfig.

Implementations§

source§

impl ScaleConfigBuilder

source

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

Default inner padding for x and y band-ordinal scales.

Default value: - barBandPaddingInner for bar marks (0.1 by default) - rectBandPaddingInner for rect and other marks (0 by default)

source

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

Default outer padding for x and y band-ordinal scales.

Default value: paddingInner/2 (which makes _width/height = number of unique values

  • step_)
source

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

Default inner padding for x and y band-ordinal scales of "bar" marks.

Default value: 0.1

source

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

If true, values that exceed the data domain are clamped to either the minimum or maximum range value

source

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

Default padding for continuous scales.

Default: 5 for continuous x-scale of a vertical bar and continuous y-scale of a horizontal bar.; 0 otherwise.

source

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

The default max value for mapping quantitative fields to bar’s size/bandSize.

If undefined (default), we will use the axis’s size (width or height) - 1.

source

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

The default max value for mapping quantitative fields to text’s size/fontSize.

Default value: 40

source

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

Default max opacity for mapping a field to opacity.

Default value: 0.8

source

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

Default max value for point size scale.

source

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

Default max strokeWidth for the scale of strokeWidth for rule and line marks and of size for trail marks.

Default value: 4

source

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

The default min value for mapping quantitative fields to bar and tick’s size/bandSize scale with zero=false.

Default value: 2

source

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

The default min value for mapping quantitative fields to tick’s size/fontSize scale with zero=false

Default value: 8

source

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

Default minimum opacity for mapping a field to opacity.

Default value: 0.3

source

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

Default minimum value for point size scale with zero=false.

Default value: 9

source

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

Default minimum strokeWidth for the scale of strokeWidth for rule and line marks and of size for trail marks with zero=false.

Default value: 1

source

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

Default outer padding for x and y point-ordinal scales.

Default value: 0.5 (which makes width/height = number of unique values * step)

source

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

Default range cardinality for quantile scale.

Default value: 4

source

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

Default range cardinality for quantize scale.

Default value: 4

source

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

Default inner padding for x and y band-ordinal scales of "rect" marks.

Default value: 0

source

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

If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid. (Only available for x, y, and size scales.)

source

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

Use the source data range before aggregation as scale domain instead of aggregated data for aggregate axis.

This is equivalent to setting domain to "unaggregate" for aggregated quantitative fields by default.

This property only works with aggregate functions that produce values within the raw data domain ("mean", "average", "median", "q1", "q3", "min", "max"). For other aggregations that produce values outside of the raw data domain (e.g. "count", "sum"), this property is ignored.

Default value: false

source

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

Reverse x-scale by default (useful for right-to-left charts).

source

pub fn build(&self) -> Result<ScaleConfig, ScaleConfigBuilderError>

Builds a new ScaleConfig.

Errors

If a required field has not been initialized.

Trait Implementations§

source§

impl Clone for ScaleConfigBuilder

source§

fn clone(&self) -> ScaleConfigBuilder

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 ScaleConfigBuilder

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.