Struct aws_sdk_quicksight::types::HistogramConfiguration
source · #[non_exhaustive]pub struct HistogramConfiguration {
pub field_wells: Option<HistogramFieldWells>,
pub x_axis_display_options: Option<AxisDisplayOptions>,
pub x_axis_label_options: Option<ChartAxisLabelOptions>,
pub y_axis_display_options: Option<AxisDisplayOptions>,
pub bin_options: Option<HistogramBinOptions>,
pub data_labels: Option<DataLabelOptions>,
pub tooltip: Option<TooltipOptions>,
pub visual_palette: Option<VisualPalette>,
}
Expand description
The configuration for a HistogramVisual
.
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<HistogramFieldWells>
The field well configuration of a histogram.
x_axis_display_options: Option<AxisDisplayOptions>
The options that determine the presentation of the x-axis.
x_axis_label_options: Option<ChartAxisLabelOptions>
The options that determine the presentation of the x-axis label.
y_axis_display_options: Option<AxisDisplayOptions>
The options that determine the presentation of the y-axis.
bin_options: Option<HistogramBinOptions>
The options that determine the presentation of histogram bins.
data_labels: Option<DataLabelOptions>
The data label configuration of a histogram.
tooltip: Option<TooltipOptions>
The tooltip configuration of a histogram.
visual_palette: Option<VisualPalette>
The visual palette configuration of a histogram.
Implementations§
source§impl HistogramConfiguration
impl HistogramConfiguration
sourcepub fn field_wells(&self) -> Option<&HistogramFieldWells>
pub fn field_wells(&self) -> Option<&HistogramFieldWells>
The field well configuration of a histogram.
sourcepub fn x_axis_display_options(&self) -> Option<&AxisDisplayOptions>
pub fn x_axis_display_options(&self) -> Option<&AxisDisplayOptions>
The options that determine the presentation of the x-axis.
sourcepub fn x_axis_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn x_axis_label_options(&self) -> Option<&ChartAxisLabelOptions>
The options that determine the presentation of the x-axis label.
sourcepub fn y_axis_display_options(&self) -> Option<&AxisDisplayOptions>
pub fn y_axis_display_options(&self) -> Option<&AxisDisplayOptions>
The options that determine the presentation of the y-axis.
sourcepub fn bin_options(&self) -> Option<&HistogramBinOptions>
pub fn bin_options(&self) -> Option<&HistogramBinOptions>
The options that determine the presentation of histogram bins.
sourcepub fn data_labels(&self) -> Option<&DataLabelOptions>
pub fn data_labels(&self) -> Option<&DataLabelOptions>
The data label configuration of a histogram.
sourcepub fn tooltip(&self) -> Option<&TooltipOptions>
pub fn tooltip(&self) -> Option<&TooltipOptions>
The tooltip configuration of a histogram.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The visual palette configuration of a histogram.
source§impl HistogramConfiguration
impl HistogramConfiguration
sourcepub fn builder() -> HistogramConfigurationBuilder
pub fn builder() -> HistogramConfigurationBuilder
Creates a new builder-style object to manufacture HistogramConfiguration
.
Trait Implementations§
source§impl Clone for HistogramConfiguration
impl Clone for HistogramConfiguration
source§fn clone(&self) -> HistogramConfiguration
fn clone(&self) -> HistogramConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HistogramConfiguration
impl Debug for HistogramConfiguration
source§impl PartialEq for HistogramConfiguration
impl PartialEq for HistogramConfiguration
source§fn eq(&self, other: &HistogramConfiguration) -> bool
fn eq(&self, other: &HistogramConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.