Struct aws_sdk_quicksight::model::SmallMultiplesOptions
source · #[non_exhaustive]pub struct SmallMultiplesOptions { /* private fields */ }
Expand description
Options that determine the layout and display options of a chart's small multiples.
Implementations§
source§impl SmallMultiplesOptions
impl SmallMultiplesOptions
sourcepub fn max_visible_rows(&self) -> Option<i64>
pub fn max_visible_rows(&self) -> Option<i64>
Sets the maximum number of visible rows to display in the grid of small multiples panels.
The default value is Auto
, which automatically adjusts the rows in the grid to fit the overall layout and size of the given chart.
sourcepub fn max_visible_columns(&self) -> Option<i64>
pub fn max_visible_columns(&self) -> Option<i64>
Sets the maximum number of visible columns to display in the grid of small multiples panels.
The default is Auto
, which automatically adjusts the columns in the grid to fit the overall layout and size of the given chart.
sourcepub fn panel_configuration(&self) -> Option<&PanelConfiguration>
pub fn panel_configuration(&self) -> Option<&PanelConfiguration>
Configures the display options for each small multiples panel.
source§impl SmallMultiplesOptions
impl SmallMultiplesOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SmallMultiplesOptions
.
Trait Implementations§
source§impl Clone for SmallMultiplesOptions
impl Clone for SmallMultiplesOptions
source§fn clone(&self) -> SmallMultiplesOptions
fn clone(&self) -> SmallMultiplesOptions
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 SmallMultiplesOptions
impl Debug for SmallMultiplesOptions
source§impl PartialEq<SmallMultiplesOptions> for SmallMultiplesOptions
impl PartialEq<SmallMultiplesOptions> for SmallMultiplesOptions
source§fn eq(&self, other: &SmallMultiplesOptions) -> bool
fn eq(&self, other: &SmallMultiplesOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.