Struct aws_sdk_quicksight::types::SmallMultiplesOptions
source · #[non_exhaustive]pub struct SmallMultiplesOptions {
pub max_visible_rows: Option<i64>,
pub max_visible_columns: Option<i64>,
pub panel_configuration: Option<PanelConfiguration>,
pub x_axis: Option<SmallMultiplesAxisProperties>,
pub y_axis: Option<SmallMultiplesAxisProperties>,
}
Expand description
Options that determine the layout and display options of a chart's small multiples.
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.max_visible_rows: 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.
max_visible_columns: 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.
panel_configuration: Option<PanelConfiguration>
Configures the display options for each small multiples panel.
x_axis: Option<SmallMultiplesAxisProperties>
The properties of a small multiples X axis.
y_axis: Option<SmallMultiplesAxisProperties>
The properties of a small multiples Y axis.
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.
sourcepub fn x_axis(&self) -> Option<&SmallMultiplesAxisProperties>
pub fn x_axis(&self) -> Option<&SmallMultiplesAxisProperties>
The properties of a small multiples X axis.
sourcepub fn y_axis(&self) -> Option<&SmallMultiplesAxisProperties>
pub fn y_axis(&self) -> Option<&SmallMultiplesAxisProperties>
The properties of a small multiples Y axis.
source§impl SmallMultiplesOptions
impl SmallMultiplesOptions
sourcepub fn builder() -> SmallMultiplesOptionsBuilder
pub fn builder() -> SmallMultiplesOptionsBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SmallMultiplesOptions
impl Debug for SmallMultiplesOptions
source§impl PartialEq for SmallMultiplesOptions
impl PartialEq for SmallMultiplesOptions
impl StructuralPartialEq for SmallMultiplesOptions
Auto Trait Implementations§
impl Freeze for SmallMultiplesOptions
impl RefUnwindSafe for SmallMultiplesOptions
impl Send for SmallMultiplesOptions
impl Sync for SmallMultiplesOptions
impl Unpin for SmallMultiplesOptions
impl UnwindSafe for SmallMultiplesOptions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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