Struct aws_sdk_quicksight::types::RadarChartConfiguration
source · #[non_exhaustive]pub struct RadarChartConfiguration {Show 15 fields
pub field_wells: Option<RadarChartFieldWells>,
pub sort_configuration: Option<RadarChartSortConfiguration>,
pub shape: Option<RadarChartShape>,
pub base_series_settings: Option<RadarChartSeriesSettings>,
pub start_angle: Option<f64>,
pub visual_palette: Option<VisualPalette>,
pub alternate_band_colors_visibility: Option<Visibility>,
pub alternate_band_even_color: Option<String>,
pub alternate_band_odd_color: Option<String>,
pub category_axis: Option<AxisDisplayOptions>,
pub category_label_options: Option<ChartAxisLabelOptions>,
pub color_axis: Option<AxisDisplayOptions>,
pub color_label_options: Option<ChartAxisLabelOptions>,
pub legend: Option<LegendOptions>,
pub axes_range_scale: Option<RadarChartAxesRangeScale>,
}
Expand description
The configuration of a RadarChartVisual
.
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<RadarChartFieldWells>
The field well configuration of a RadarChartVisual
.
sort_configuration: Option<RadarChartSortConfiguration>
The sort configuration of a RadarChartVisual
.
shape: Option<RadarChartShape>
The shape of the radar chart.
base_series_settings: Option<RadarChartSeriesSettings>
The base sreies settings of a radar chart.
start_angle: Option<f64>
The start angle of a radar chart's axis.
visual_palette: Option<VisualPalette>
The palette (chart color) display setup of the visual.
alternate_band_colors_visibility: Option<Visibility>
Determines the visibility of the colors of alternatign bands in a radar chart.
alternate_band_even_color: Option<String>
The color of the even-numbered alternate bands of a radar chart.
alternate_band_odd_color: Option<String>
The color of the odd-numbered alternate bands of a radar chart.
category_axis: Option<AxisDisplayOptions>
The category axis of a radar chart.
category_label_options: Option<ChartAxisLabelOptions>
The category label options of a radar chart.
color_axis: Option<AxisDisplayOptions>
The color axis of a radar chart.
color_label_options: Option<ChartAxisLabelOptions>
The color label options of a radar chart.
legend: Option<LegendOptions>
The legend display setup of the visual.
axes_range_scale: Option<RadarChartAxesRangeScale>
The axis behavior options of a radar chart.
Implementations§
source§impl RadarChartConfiguration
impl RadarChartConfiguration
sourcepub fn field_wells(&self) -> Option<&RadarChartFieldWells>
pub fn field_wells(&self) -> Option<&RadarChartFieldWells>
The field well configuration of a RadarChartVisual
.
sourcepub fn sort_configuration(&self) -> Option<&RadarChartSortConfiguration>
pub fn sort_configuration(&self) -> Option<&RadarChartSortConfiguration>
The sort configuration of a RadarChartVisual
.
sourcepub fn shape(&self) -> Option<&RadarChartShape>
pub fn shape(&self) -> Option<&RadarChartShape>
The shape of the radar chart.
sourcepub fn base_series_settings(&self) -> Option<&RadarChartSeriesSettings>
pub fn base_series_settings(&self) -> Option<&RadarChartSeriesSettings>
The base sreies settings of a radar chart.
sourcepub fn start_angle(&self) -> Option<f64>
pub fn start_angle(&self) -> Option<f64>
The start angle of a radar chart's axis.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The palette (chart color) display setup of the visual.
sourcepub fn alternate_band_colors_visibility(&self) -> Option<&Visibility>
pub fn alternate_band_colors_visibility(&self) -> Option<&Visibility>
Determines the visibility of the colors of alternatign bands in a radar chart.
sourcepub fn alternate_band_even_color(&self) -> Option<&str>
pub fn alternate_band_even_color(&self) -> Option<&str>
The color of the even-numbered alternate bands of a radar chart.
sourcepub fn alternate_band_odd_color(&self) -> Option<&str>
pub fn alternate_band_odd_color(&self) -> Option<&str>
The color of the odd-numbered alternate bands of a radar chart.
sourcepub fn category_axis(&self) -> Option<&AxisDisplayOptions>
pub fn category_axis(&self) -> Option<&AxisDisplayOptions>
The category axis of a radar chart.
sourcepub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn category_label_options(&self) -> Option<&ChartAxisLabelOptions>
The category label options of a radar chart.
sourcepub fn color_axis(&self) -> Option<&AxisDisplayOptions>
pub fn color_axis(&self) -> Option<&AxisDisplayOptions>
The color axis of a radar chart.
sourcepub fn color_label_options(&self) -> Option<&ChartAxisLabelOptions>
pub fn color_label_options(&self) -> Option<&ChartAxisLabelOptions>
The color label options of a radar chart.
sourcepub fn legend(&self) -> Option<&LegendOptions>
pub fn legend(&self) -> Option<&LegendOptions>
The legend display setup of the visual.
sourcepub fn axes_range_scale(&self) -> Option<&RadarChartAxesRangeScale>
pub fn axes_range_scale(&self) -> Option<&RadarChartAxesRangeScale>
The axis behavior options of a radar chart.
source§impl RadarChartConfiguration
impl RadarChartConfiguration
sourcepub fn builder() -> RadarChartConfigurationBuilder
pub fn builder() -> RadarChartConfigurationBuilder
Creates a new builder-style object to manufacture RadarChartConfiguration
.
Trait Implementations§
source§impl Clone for RadarChartConfiguration
impl Clone for RadarChartConfiguration
source§fn clone(&self) -> RadarChartConfiguration
fn clone(&self) -> RadarChartConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RadarChartConfiguration
impl Debug for RadarChartConfiguration
source§impl PartialEq for RadarChartConfiguration
impl PartialEq for RadarChartConfiguration
source§fn eq(&self, other: &RadarChartConfiguration) -> bool
fn eq(&self, other: &RadarChartConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.