#[non_exhaustive]pub struct FunnelChartDataLabelOptions { /* private fields */ }
Expand description
The options that determine the presentation of the data labels.
Implementations§
source§impl FunnelChartDataLabelOptions
impl FunnelChartDataLabelOptions
sourcepub fn visibility(&self) -> Option<&Visibility>
pub fn visibility(&self) -> Option<&Visibility>
The visibility option that determines if data labels are displayed.
sourcepub fn category_label_visibility(&self) -> Option<&Visibility>
pub fn category_label_visibility(&self) -> Option<&Visibility>
The visibility of the category labels within the data labels.
sourcepub fn measure_label_visibility(&self) -> Option<&Visibility>
pub fn measure_label_visibility(&self) -> Option<&Visibility>
The visibility of the measure labels within the data labels.
sourcepub fn position(&self) -> Option<&DataLabelPosition>
pub fn position(&self) -> Option<&DataLabelPosition>
Determines the positioning of the data label relative to a section of the funnel.
sourcepub fn label_font_configuration(&self) -> Option<&FontConfiguration>
pub fn label_font_configuration(&self) -> Option<&FontConfiguration>
The font configuration for the data labels.
Only the FontSize
attribute of the font configuration is used for data labels.
sourcepub fn label_color(&self) -> Option<&str>
pub fn label_color(&self) -> Option<&str>
The color of the data label text.
sourcepub fn measure_data_label_style(
&self
) -> Option<&FunnelChartMeasureDataLabelStyle>
pub fn measure_data_label_style(
&self
) -> Option<&FunnelChartMeasureDataLabelStyle>
Determines the style of the metric labels.
source§impl FunnelChartDataLabelOptions
impl FunnelChartDataLabelOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FunnelChartDataLabelOptions
.
Trait Implementations§
source§impl Clone for FunnelChartDataLabelOptions
impl Clone for FunnelChartDataLabelOptions
source§fn clone(&self) -> FunnelChartDataLabelOptions
fn clone(&self) -> FunnelChartDataLabelOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FunnelChartDataLabelOptions
impl Debug for FunnelChartDataLabelOptions
source§impl PartialEq<FunnelChartDataLabelOptions> for FunnelChartDataLabelOptions
impl PartialEq<FunnelChartDataLabelOptions> for FunnelChartDataLabelOptions
source§fn eq(&self, other: &FunnelChartDataLabelOptions) -> bool
fn eq(&self, other: &FunnelChartDataLabelOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.