#[non_exhaustive]pub struct FunnelChartConfiguration {
pub field_wells: Option<FunnelChartFieldWells>,
pub sort_configuration: Option<FunnelChartSortConfiguration>,
pub category_label_options: Option<ChartAxisLabelOptions>,
pub value_label_options: Option<ChartAxisLabelOptions>,
pub tooltip: Option<TooltipOptions>,
pub data_label_options: Option<FunnelChartDataLabelOptions>,
pub visual_palette: Option<VisualPalette>,
pub interactions: Option<VisualInteractionOptions>,
}
Expand description
The configuration of a FunnelChartVisual
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_wells: Option<FunnelChartFieldWells>
The field well configuration of a FunnelChartVisual
.
sort_configuration: Option<FunnelChartSortConfiguration>
The sort configuration of a FunnelChartVisual
.
category_label_options: Option<ChartAxisLabelOptions>
The label options of the categories that are displayed in a FunnelChartVisual
.
value_label_options: Option<ChartAxisLabelOptions>
The label options for the values that are displayed in a FunnelChartVisual
.
tooltip: Option<TooltipOptions>
The tooltip configuration of a FunnelChartVisual
.
data_label_options: Option<FunnelChartDataLabelOptions>
The options that determine the presentation of the data labels.
visual_palette: Option<VisualPalette>
The visual palette configuration of a FunnelChartVisual
.
interactions: Option<VisualInteractionOptions>
The general visual interactions setup for a visual.
Implementations§
source§impl FunnelChartConfiguration
impl FunnelChartConfiguration
sourcepub fn field_wells(&self) -> Option<&FunnelChartFieldWells>
pub fn field_wells(&self) -> Option<&FunnelChartFieldWells>
The field well configuration of a FunnelChartVisual
.
sourcepub fn sort_configuration(&self) -> Option<&FunnelChartSortConfiguration>
pub fn sort_configuration(&self) -> Option<&FunnelChartSortConfiguration>
The sort configuration of a FunnelChartVisual
.
sourcepub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
The label options of the categories that are displayed in a FunnelChartVisual
.
sourcepub fn value_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn value_label_options(&self) -> Option<&ChartAxisLabelOptions>
The label options for the values that are displayed in a FunnelChartVisual
.
sourcepub fn tooltip(&self) -> Option<&TooltipOptions>
pub fn tooltip(&self) -> Option<&TooltipOptions>
The tooltip configuration of a FunnelChartVisual
.
sourcepub fn data_label_options(&self) -> Option<&FunnelChartDataLabelOptions>
pub fn data_label_options(&self) -> Option<&FunnelChartDataLabelOptions>
The options that determine the presentation of the data labels.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The visual palette configuration of a FunnelChartVisual
.
sourcepub fn interactions(&self) -> Option<&VisualInteractionOptions>
pub fn interactions(&self) -> Option<&VisualInteractionOptions>
The general visual interactions setup for a visual.
source§impl FunnelChartConfiguration
impl FunnelChartConfiguration
sourcepub fn builder() -> FunnelChartConfigurationBuilder
pub fn builder() -> FunnelChartConfigurationBuilder
Creates a new builder-style object to manufacture FunnelChartConfiguration
.
Trait Implementations§
source§impl Clone for FunnelChartConfiguration
impl Clone for FunnelChartConfiguration
source§fn clone(&self) -> FunnelChartConfiguration
fn clone(&self) -> FunnelChartConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FunnelChartConfiguration
impl Debug for FunnelChartConfiguration
source§impl PartialEq for FunnelChartConfiguration
impl PartialEq for FunnelChartConfiguration
impl StructuralPartialEq for FunnelChartConfiguration
Auto Trait Implementations§
impl Freeze for FunnelChartConfiguration
impl RefUnwindSafe for FunnelChartConfiguration
impl Send for FunnelChartConfiguration
impl Sync for FunnelChartConfiguration
impl Unpin for FunnelChartConfiguration
impl UnwindSafe for FunnelChartConfiguration
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