#[non_exhaustive]pub struct LineChartSortConfiguration { /* private fields */ }
Expand description
The sort configuration of a line chart.
Implementations§
source§impl LineChartSortConfiguration
impl LineChartSortConfiguration
sourcepub fn category_sort(&self) -> Option<&[FieldSortOptions]>
pub fn category_sort(&self) -> Option<&[FieldSortOptions]>
The sort configuration of the category fields.
sourcepub fn category_items_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
pub fn category_items_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
The limit on the number of categories that are displayed in a line chart.
sourcepub fn color_items_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
pub fn color_items_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
The limit on the number of lines that are displayed in a line chart.
sourcepub fn small_multiples_sort(&self) -> Option<&[FieldSortOptions]>
pub fn small_multiples_sort(&self) -> Option<&[FieldSortOptions]>
The sort configuration of the small multiples field.
sourcepub fn small_multiples_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
pub fn small_multiples_limit_configuration(
&self
) -> Option<&ItemsLimitConfiguration>
The limit on the number of small multiples panels that are displayed.
source§impl LineChartSortConfiguration
impl LineChartSortConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LineChartSortConfiguration
.
Trait Implementations§
source§impl Clone for LineChartSortConfiguration
impl Clone for LineChartSortConfiguration
source§fn clone(&self) -> LineChartSortConfiguration
fn clone(&self) -> LineChartSortConfiguration
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 LineChartSortConfiguration
impl Debug for LineChartSortConfiguration
source§impl PartialEq<LineChartSortConfiguration> for LineChartSortConfiguration
impl PartialEq<LineChartSortConfiguration> for LineChartSortConfiguration
source§fn eq(&self, other: &LineChartSortConfiguration) -> bool
fn eq(&self, other: &LineChartSortConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.