Struct aws_sdk_quicksight::types::DataLabelOptions
source · #[non_exhaustive]pub struct DataLabelOptions { /* private fields */ }
Expand description
The options that determine the presentation of the data labels.
Implementations§
source§impl DataLabelOptions
impl DataLabelOptions
sourcepub fn visibility(&self) -> Option<&Visibility>
pub fn visibility(&self) -> Option<&Visibility>
Determines the visibility of the data labels.
sourcepub fn category_label_visibility(&self) -> Option<&Visibility>
pub fn category_label_visibility(&self) -> Option<&Visibility>
Determines the visibility of the category field labels.
sourcepub fn measure_label_visibility(&self) -> Option<&Visibility>
pub fn measure_label_visibility(&self) -> Option<&Visibility>
Determines the visibility of the measure field labels.
sourcepub fn data_label_types(&self) -> Option<&[DataLabelType]>
pub fn data_label_types(&self) -> Option<&[DataLabelType]>
The option that determines the data label type.
sourcepub fn position(&self) -> Option<&DataLabelPosition>
pub fn position(&self) -> Option<&DataLabelPosition>
Determines the position of the data labels.
sourcepub fn label_content(&self) -> Option<&DataLabelContent>
pub fn label_content(&self) -> Option<&DataLabelContent>
Determines the content of the data labels.
sourcepub fn label_font_configuration(&self) -> Option<&FontConfiguration>
pub fn label_font_configuration(&self) -> Option<&FontConfiguration>
Determines the font configuration of the data labels.
sourcepub fn label_color(&self) -> Option<&str>
pub fn label_color(&self) -> Option<&str>
Determines the color of the data labels.
sourcepub fn overlap(&self) -> Option<&DataLabelOverlap>
pub fn overlap(&self) -> Option<&DataLabelOverlap>
Determines whether overlap is enabled or disabled for the data labels.
source§impl DataLabelOptions
impl DataLabelOptions
sourcepub fn builder() -> DataLabelOptionsBuilder
pub fn builder() -> DataLabelOptionsBuilder
Creates a new builder-style object to manufacture DataLabelOptions
.
Trait Implementations§
source§impl Clone for DataLabelOptions
impl Clone for DataLabelOptions
source§fn clone(&self) -> DataLabelOptions
fn clone(&self) -> DataLabelOptions
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 DataLabelOptions
impl Debug for DataLabelOptions
source§impl PartialEq<DataLabelOptions> for DataLabelOptions
impl PartialEq<DataLabelOptions> for DataLabelOptions
source§fn eq(&self, other: &DataLabelOptions) -> bool
fn eq(&self, other: &DataLabelOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.