pub struct SinglePointDataset { /* private fields */ }
Implementations§
§impl SinglePointDataset
impl SinglePointDataset
pub fn new() -> Self
pub fn get_background_color(&mut self) -> &mut Vec<String>
pub fn background_color<T: Into<String>>( self, value: impl IntoIterator<Item = T>, ) -> SinglePointDataset
pub fn get_bar_percentage(&mut self) -> &mut NumberString
pub fn bar_percentage( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_bar_thickness(&mut self) -> &mut NumberString
pub fn bar_thickness(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_base(&mut self) -> &mut NumberString
pub fn base(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_border_color(&mut self) -> &mut String
pub fn border_color(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_border_join_style(&mut self) -> &mut String
pub fn border_join_style(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_border_radius(&mut self) -> &mut NumberString
pub fn border_radius(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_border_skipped(&mut self) -> &mut String
pub fn border_skipped(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_border_width(&mut self) -> &mut Option<NumberStringOrT<Border>>
pub fn border_width( self, value: impl Into<NumberStringOrT<Border>>, ) -> SinglePointDataset
pub fn get_category_percentage(&mut self) -> &mut NumberString
pub fn category_percentage( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_clip(&mut self) -> &mut NumberString
pub fn clip(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_data(&mut self) -> &mut Vec<NumberString>
pub fn data<T: Into<NumberString>>( self, value: impl IntoIterator<Item = T>, ) -> SinglePointDataset
pub fn get_datalabels(&mut self) -> &mut Option<DataLabels>
pub fn datalabels(self, value: impl Into<DataLabels>) -> SinglePointDataset
pub fn get_grouped(&mut self) -> &mut Option<bool>
pub fn grouped(self, value: impl Into<bool>) -> SinglePointDataset
pub fn get_hover_background_color(&mut self) -> &mut String
pub fn hover_background_color( self, value: impl Into<String>, ) -> SinglePointDataset
pub fn get_hover_border_color(&mut self) -> &mut String
pub fn hover_border_color(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_hover_border_radius(&mut self) -> &mut NumberString
pub fn hover_border_radius( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_hover_border_width(&mut self) -> &mut Option<NumberStringOrT<Border>>
pub fn hover_border_width( self, value: impl Into<NumberStringOrT<Border>>, ) -> SinglePointDataset
pub fn get_index_axis(&mut self) -> &mut String
pub fn index_axis(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_inflate_amount(&mut self) -> &mut NumberString
pub fn inflate_amount( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_label(&mut self) -> &mut String
pub fn label(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_max_bar_thickness(&mut self) -> &mut NumberString
pub fn max_bar_thickness( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_min_bar_length(&mut self) -> &mut NumberString
pub fn min_bar_length( self, value: impl Into<NumberString>, ) -> SinglePointDataset
pub fn get_order(&mut self) -> &mut NumberString
pub fn order(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_point_background_color(&mut self) -> &mut String
pub fn point_background_color( self, value: impl Into<String>, ) -> SinglePointDataset
pub fn get_point_border_color(&mut self) -> &mut String
pub fn point_border_color(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_point_border_width(&mut self) -> &mut Option<NumberStringOrT<Border>>
pub fn point_border_width( self, value: impl Into<NumberStringOrT<Border>>, ) -> SinglePointDataset
pub fn get_point_hover_background_color(&mut self) -> &mut String
pub fn point_hover_background_color( self, value: impl Into<String>, ) -> SinglePointDataset
pub fn get_point_hover_border_width( &mut self, ) -> &mut Option<NumberStringOrT<Border>>
pub fn point_hover_border_width( self, value: impl Into<NumberStringOrT<Border>>, ) -> SinglePointDataset
pub fn get_point_hover_radius(&mut self) -> &mut NumberOrDateString
pub fn point_hover_radius( self, value: impl Into<NumberOrDateString>, ) -> SinglePointDataset
pub fn get_point_radius(&mut self) -> &mut NumberString
pub fn point_radius(self, value: impl Into<NumberString>) -> SinglePointDataset
pub fn get_point_style(&mut self) -> &mut String
pub fn point_style(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_dataset_type(&mut self) -> &mut String
pub fn dataset_type(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_skip_null(&mut self) -> &mut Option<bool>
pub fn skip_null(self, value: impl Into<bool>) -> SinglePointDataset
pub fn get_stack(&mut self) -> &mut String
pub fn stack(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_stepped(&mut self) -> &mut Option<bool>
pub fn stepped(self, value: impl Into<bool>) -> SinglePointDataset
pub fn get_x_axis_id(&mut self) -> &mut String
pub fn x_axis_id(self, value: impl Into<String>) -> SinglePointDataset
pub fn get_y_axis_id(&mut self) -> &mut String
pub fn y_axis_id(self, value: impl Into<String>) -> SinglePointDataset
Trait Implementations§
Source§impl Clone for SinglePointDataset
impl Clone for SinglePointDataset
Source§fn clone(&self) -> SinglePointDataset
fn clone(&self) -> SinglePointDataset
Returns a duplicate 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 SinglePointDataset
impl Debug for SinglePointDataset
Source§impl Default for SinglePointDataset
impl Default for SinglePointDataset
Source§fn default() -> SinglePointDataset
fn default() -> SinglePointDataset
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SinglePointDataset
impl<'de> Deserialize<'de> for SinglePointDataset
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for SinglePointDataset
impl Ord for SinglePointDataset
Source§fn cmp(&self, other: &SinglePointDataset) -> Ordering
fn cmp(&self, other: &SinglePointDataset) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SinglePointDataset
impl PartialEq for SinglePointDataset
Source§impl PartialOrd for SinglePointDataset
impl PartialOrd for SinglePointDataset
Source§impl Serialize for SinglePointDataset
impl Serialize for SinglePointDataset
impl Eq for SinglePointDataset
impl StructuralPartialEq for SinglePointDataset
Auto Trait Implementations§
impl Freeze for SinglePointDataset
impl RefUnwindSafe for SinglePointDataset
impl Send for SinglePointDataset
impl Sync for SinglePointDataset
impl Unpin for SinglePointDataset
impl UnwindSafe for SinglePointDataset
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
Mutably borrows from an owned value. Read more