Struct aws_sdk_quicksight::model::BarChartVisual
source · #[non_exhaustive]pub struct BarChartVisual { /* private fields */ }
Expand description
A bar chart.
The BarChartVisual
structure describes a visual that is a member of the bar chart family. The following charts can be described using this structure:
-
Horizontal bar chart
-
Vertical bar chart
-
Horizontal stacked bar chart
-
Vertical stacked bar chart
-
Horizontal stacked 100% bar chart
-
Vertical stacked 100% bar chart
For more information, see Using bar charts in the Amazon QuickSight User Guide.
Implementations§
source§impl BarChartVisual
impl BarChartVisual
sourcepub fn visual_id(&self) -> Option<&str>
pub fn visual_id(&self) -> Option<&str>
The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
sourcepub fn title(&self) -> Option<&VisualTitleLabelOptions>
pub fn title(&self) -> Option<&VisualTitleLabelOptions>
The title that is displayed on the visual.
sourcepub fn subtitle(&self) -> Option<&VisualSubtitleLabelOptions>
pub fn subtitle(&self) -> Option<&VisualSubtitleLabelOptions>
The subtitle that is displayed on the visual.
sourcepub fn chart_configuration(&self) -> Option<&BarChartConfiguration>
pub fn chart_configuration(&self) -> Option<&BarChartConfiguration>
The configuration settings of the visual.
sourcepub fn actions(&self) -> Option<&[VisualCustomAction]>
pub fn actions(&self) -> Option<&[VisualCustomAction]>
The list of custom actions that are configured for a visual.
sourcepub fn column_hierarchies(&self) -> Option<&[ColumnHierarchy]>
pub fn column_hierarchies(&self) -> Option<&[ColumnHierarchy]>
The column hierarchy that is used during drill-downs and drill-ups.
source§impl BarChartVisual
impl BarChartVisual
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BarChartVisual
.
Trait Implementations§
source§impl Clone for BarChartVisual
impl Clone for BarChartVisual
source§fn clone(&self) -> BarChartVisual
fn clone(&self) -> BarChartVisual
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BarChartVisual
impl Debug for BarChartVisual
source§impl PartialEq<BarChartVisual> for BarChartVisual
impl PartialEq<BarChartVisual> for BarChartVisual
source§fn eq(&self, other: &BarChartVisual) -> bool
fn eq(&self, other: &BarChartVisual) -> bool
self
and other
values to be equal, and is used
by ==
.