Struct aws_sdk_quicksight::types::BarChartVisual
source · #[non_exhaustive]pub struct BarChartVisual {
pub visual_id: String,
pub title: Option<VisualTitleLabelOptions>,
pub subtitle: Option<VisualSubtitleLabelOptions>,
pub chart_configuration: Option<BarChartConfiguration>,
pub actions: Option<Vec<VisualCustomAction>>,
pub column_hierarchies: Option<Vec<ColumnHierarchy>>,
}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.
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.visual_id: StringThe 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.
title: Option<VisualTitleLabelOptions>The title that is displayed on the visual.
subtitle: Option<VisualSubtitleLabelOptions>The subtitle that is displayed on the visual.
chart_configuration: Option<BarChartConfiguration>The configuration settings of the visual.
actions: Option<Vec<VisualCustomAction>>The list of custom actions that are configured for a visual.
column_hierarchies: Option<Vec<ColumnHierarchy>>The column hierarchy that is used during drill-downs and drill-ups.
Implementations§
source§impl BarChartVisual
impl BarChartVisual
sourcepub fn visual_id(&self) -> &str
pub fn visual_id(&self) -> &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) -> &[VisualCustomAction]
pub fn actions(&self) -> &[VisualCustomAction]
The list of custom actions that are configured for a visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .actions.is_none().
sourcepub fn column_hierarchies(&self) -> &[ColumnHierarchy]
pub fn column_hierarchies(&self) -> &[ColumnHierarchy]
The column hierarchy that is used during drill-downs and drill-ups.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .column_hierarchies.is_none().
source§impl BarChartVisual
impl BarChartVisual
sourcepub fn builder() -> BarChartVisualBuilder
pub fn builder() -> BarChartVisualBuilder
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 for BarChartVisual
impl PartialEq 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 ==.impl StructuralPartialEq for BarChartVisual
Auto Trait Implementations§
impl Freeze for BarChartVisual
impl RefUnwindSafe for BarChartVisual
impl Send for BarChartVisual
impl Sync for BarChartVisual
impl Unpin for BarChartVisual
impl UnwindSafe for BarChartVisual
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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