pub struct ScatterChart { /* private fields */ }Implementations§
Source§impl ScatterChart
impl ScatterChart
pub fn get_scatter_style(&self) -> &ScatterStyle
pub fn get_scatter_style_mut(&mut self) -> &mut ScatterStyle
pub fn set_scatter_style(&mut self, value: ScatterStyle) -> &mut ScatterChart
pub fn get_vary_colors(&self) -> &VaryColors
pub fn get_vary_colors_mut(&mut self) -> &mut VaryColors
pub fn set_vary_colors(&mut self, value: VaryColors) -> &mut ScatterChart
pub fn get_area_chart_series_list(&self) -> &AreaChartSeriesList
pub fn get_area_chart_series_list_mut(&mut self) -> &mut AreaChartSeriesList
pub fn set_area_chart_series_list( &mut self, value: AreaChartSeriesList, ) -> &mut Self
pub fn get_data_labels(&self) -> &DataLabels
pub fn get_data_labels_mut(&mut self) -> &mut DataLabels
pub fn set_data_labels(&mut self, value: DataLabels) -> &mut ScatterChart
pub fn get_axis_id(&self) -> &[AxisId]
pub fn get_axis_id_mut(&mut self) -> &mut ThinVec<AxisId>
pub fn set_axis_id( &mut self, value: impl Into<ThinVec<AxisId>>, ) -> &mut ScatterChart
pub fn add_axis_id(&mut self, value: AxisId) -> &mut ScatterChart
Trait Implementations§
Source§impl Clone for ScatterChart
impl Clone for ScatterChart
Source§fn clone(&self) -> ScatterChart
fn clone(&self) -> ScatterChart
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 ScatterChart
impl Debug for ScatterChart
Source§impl Default for ScatterChart
impl Default for ScatterChart
Source§fn default() -> ScatterChart
fn default() -> ScatterChart
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScatterChart
impl RefUnwindSafe for ScatterChart
impl Send for ScatterChart
impl Sync for ScatterChart
impl Unpin for ScatterChart
impl UnwindSafe for ScatterChart
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