#[non_exhaustive]pub struct FunnelChartConfigurationBuilder { /* private fields */ }
Expand description
A builder for FunnelChartConfiguration
.
Implementations§
source§impl FunnelChartConfigurationBuilder
impl FunnelChartConfigurationBuilder
sourcepub fn field_wells(self, input: FunnelChartFieldWells) -> Self
pub fn field_wells(self, input: FunnelChartFieldWells) -> Self
The field well configuration of a FunnelChartVisual
.
sourcepub fn set_field_wells(self, input: Option<FunnelChartFieldWells>) -> Self
pub fn set_field_wells(self, input: Option<FunnelChartFieldWells>) -> Self
The field well configuration of a FunnelChartVisual
.
sourcepub fn get_field_wells(&self) -> &Option<FunnelChartFieldWells>
pub fn get_field_wells(&self) -> &Option<FunnelChartFieldWells>
The field well configuration of a FunnelChartVisual
.
sourcepub fn sort_configuration(self, input: FunnelChartSortConfiguration) -> Self
pub fn sort_configuration(self, input: FunnelChartSortConfiguration) -> Self
The sort configuration of a FunnelChartVisual
.
sourcepub fn set_sort_configuration(
self,
input: Option<FunnelChartSortConfiguration>,
) -> Self
pub fn set_sort_configuration( self, input: Option<FunnelChartSortConfiguration>, ) -> Self
The sort configuration of a FunnelChartVisual
.
sourcepub fn get_sort_configuration(&self) -> &Option<FunnelChartSortConfiguration>
pub fn get_sort_configuration(&self) -> &Option<FunnelChartSortConfiguration>
The sort configuration of a FunnelChartVisual
.
sourcepub fn category_label_options(self, input: ChartAxisLabelOptions) -> Self
pub fn category_label_options(self, input: ChartAxisLabelOptions) -> Self
The label options of the categories that are displayed in a FunnelChartVisual
.
sourcepub fn set_category_label_options(
self,
input: Option<ChartAxisLabelOptions>,
) -> Self
pub fn set_category_label_options( self, input: Option<ChartAxisLabelOptions>, ) -> Self
The label options of the categories that are displayed in a FunnelChartVisual
.
sourcepub fn get_category_label_options(&self) -> &Option<ChartAxisLabelOptions>
pub fn get_category_label_options(&self) -> &Option<ChartAxisLabelOptions>
The label options of the categories that are displayed in a FunnelChartVisual
.
sourcepub fn value_label_options(self, input: ChartAxisLabelOptions) -> Self
pub fn value_label_options(self, input: ChartAxisLabelOptions) -> Self
The label options for the values that are displayed in a FunnelChartVisual
.
sourcepub fn set_value_label_options(
self,
input: Option<ChartAxisLabelOptions>,
) -> Self
pub fn set_value_label_options( self, input: Option<ChartAxisLabelOptions>, ) -> Self
The label options for the values that are displayed in a FunnelChartVisual
.
sourcepub fn get_value_label_options(&self) -> &Option<ChartAxisLabelOptions>
pub fn get_value_label_options(&self) -> &Option<ChartAxisLabelOptions>
The label options for the values that are displayed in a FunnelChartVisual
.
sourcepub fn tooltip(self, input: TooltipOptions) -> Self
pub fn tooltip(self, input: TooltipOptions) -> Self
The tooltip configuration of a FunnelChartVisual
.
sourcepub fn set_tooltip(self, input: Option<TooltipOptions>) -> Self
pub fn set_tooltip(self, input: Option<TooltipOptions>) -> Self
The tooltip configuration of a FunnelChartVisual
.
sourcepub fn get_tooltip(&self) -> &Option<TooltipOptions>
pub fn get_tooltip(&self) -> &Option<TooltipOptions>
The tooltip configuration of a FunnelChartVisual
.
sourcepub fn data_label_options(self, input: FunnelChartDataLabelOptions) -> Self
pub fn data_label_options(self, input: FunnelChartDataLabelOptions) -> Self
The options that determine the presentation of the data labels.
sourcepub fn set_data_label_options(
self,
input: Option<FunnelChartDataLabelOptions>,
) -> Self
pub fn set_data_label_options( self, input: Option<FunnelChartDataLabelOptions>, ) -> Self
The options that determine the presentation of the data labels.
sourcepub fn get_data_label_options(&self) -> &Option<FunnelChartDataLabelOptions>
pub fn get_data_label_options(&self) -> &Option<FunnelChartDataLabelOptions>
The options that determine the presentation of the data labels.
sourcepub fn visual_palette(self, input: VisualPalette) -> Self
pub fn visual_palette(self, input: VisualPalette) -> Self
The visual palette configuration of a FunnelChartVisual
.
sourcepub fn set_visual_palette(self, input: Option<VisualPalette>) -> Self
pub fn set_visual_palette(self, input: Option<VisualPalette>) -> Self
The visual palette configuration of a FunnelChartVisual
.
sourcepub fn get_visual_palette(&self) -> &Option<VisualPalette>
pub fn get_visual_palette(&self) -> &Option<VisualPalette>
The visual palette configuration of a FunnelChartVisual
.
sourcepub fn interactions(self, input: VisualInteractionOptions) -> Self
pub fn interactions(self, input: VisualInteractionOptions) -> Self
The general visual interactions setup for a visual.
sourcepub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
pub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
The general visual interactions setup for a visual.
sourcepub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
pub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
The general visual interactions setup for a visual.
sourcepub fn build(self) -> FunnelChartConfiguration
pub fn build(self) -> FunnelChartConfiguration
Consumes the builder and constructs a FunnelChartConfiguration
.
Trait Implementations§
source§impl Clone for FunnelChartConfigurationBuilder
impl Clone for FunnelChartConfigurationBuilder
source§fn clone(&self) -> FunnelChartConfigurationBuilder
fn clone(&self) -> FunnelChartConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for FunnelChartConfigurationBuilder
impl Default for FunnelChartConfigurationBuilder
source§fn default() -> FunnelChartConfigurationBuilder
fn default() -> FunnelChartConfigurationBuilder
source§impl PartialEq for FunnelChartConfigurationBuilder
impl PartialEq for FunnelChartConfigurationBuilder
source§fn eq(&self, other: &FunnelChartConfigurationBuilder) -> bool
fn eq(&self, other: &FunnelChartConfigurationBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FunnelChartConfigurationBuilder
Auto Trait Implementations§
impl Freeze for FunnelChartConfigurationBuilder
impl RefUnwindSafe for FunnelChartConfigurationBuilder
impl Send for FunnelChartConfigurationBuilder
impl Sync for FunnelChartConfigurationBuilder
impl Unpin for FunnelChartConfigurationBuilder
impl UnwindSafe for FunnelChartConfigurationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more