#[non_exhaustive]pub struct ItemsLimitConfigurationBuilder { /* private fields */ }Expand description
A builder for ItemsLimitConfiguration.
Implementations§
source§impl ItemsLimitConfigurationBuilder
impl ItemsLimitConfigurationBuilder
sourcepub fn items_limit(self, input: i64) -> Self
pub fn items_limit(self, input: i64) -> Self
The limit on how many items of a field are showed in the chart. For example, the number of slices that are displayed in a pie chart.
sourcepub fn set_items_limit(self, input: Option<i64>) -> Self
pub fn set_items_limit(self, input: Option<i64>) -> Self
The limit on how many items of a field are showed in the chart. For example, the number of slices that are displayed in a pie chart.
sourcepub fn get_items_limit(&self) -> &Option<i64>
pub fn get_items_limit(&self) -> &Option<i64>
The limit on how many items of a field are showed in the chart. For example, the number of slices that are displayed in a pie chart.
sourcepub fn other_categories(self, input: OtherCategories) -> Self
pub fn other_categories(self, input: OtherCategories) -> Self
The Show other of an axis in the chart. Choose one of the following options:
-
INCLUDE -
EXCLUDE
sourcepub fn set_other_categories(self, input: Option<OtherCategories>) -> Self
pub fn set_other_categories(self, input: Option<OtherCategories>) -> Self
The Show other of an axis in the chart. Choose one of the following options:
-
INCLUDE -
EXCLUDE
sourcepub fn get_other_categories(&self) -> &Option<OtherCategories>
pub fn get_other_categories(&self) -> &Option<OtherCategories>
The Show other of an axis in the chart. Choose one of the following options:
-
INCLUDE -
EXCLUDE
sourcepub fn build(self) -> ItemsLimitConfiguration
pub fn build(self) -> ItemsLimitConfiguration
Consumes the builder and constructs a ItemsLimitConfiguration.
Trait Implementations§
source§impl Clone for ItemsLimitConfigurationBuilder
impl Clone for ItemsLimitConfigurationBuilder
source§fn clone(&self) -> ItemsLimitConfigurationBuilder
fn clone(&self) -> ItemsLimitConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ItemsLimitConfigurationBuilder
impl Default for ItemsLimitConfigurationBuilder
source§fn default() -> ItemsLimitConfigurationBuilder
fn default() -> ItemsLimitConfigurationBuilder
source§impl PartialEq for ItemsLimitConfigurationBuilder
impl PartialEq for ItemsLimitConfigurationBuilder
source§fn eq(&self, other: &ItemsLimitConfigurationBuilder) -> bool
fn eq(&self, other: &ItemsLimitConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.