pub struct LineChart { /* private fields */ }Implementations§
Source§impl LineChart
impl LineChart
pub fn grouping(&self) -> &Grouping
pub fn get_grouping(&self) -> &Grouping
👎Deprecated since 3.0.0:
Use grouping()
pub fn grouping_mut(&mut self) -> &mut Grouping
pub fn get_grouping_mut(&mut self) -> &mut Grouping
👎Deprecated since 3.0.0:
Use grouping_mut()
pub fn set_grouping(&mut self, value: Grouping) -> &mut Self
pub fn vary_colors(&self) -> &VaryColors
pub fn get_vary_colors(&self) -> &VaryColors
👎Deprecated since 3.0.0:
Use vary_colors()
pub fn vary_colors_mut(&mut self) -> &mut VaryColors
pub fn get_vary_colors_mut(&mut self) -> &mut VaryColors
👎Deprecated since 3.0.0:
Use vary_colors_mut()
pub fn set_vary_colors(&mut self, value: VaryColors) -> &mut Self
pub fn area_chart_series_list(&self) -> &AreaChartSeriesList
pub fn get_area_chart_series_list(&self) -> &AreaChartSeriesList
👎Deprecated since 3.0.0:
Use area_chart_series_list()
pub fn area_chart_series_list_mut(&mut self) -> &mut AreaChartSeriesList
pub fn get_area_chart_series_list_mut(&mut self) -> &mut AreaChartSeriesList
👎Deprecated since 3.0.0:
Use area_chart_series_list_mut()
pub fn set_area_chart_series_list( &mut self, value: AreaChartSeriesList, ) -> &mut Self
pub fn data_labels(&self) -> &DataLabels
pub fn get_data_labels(&self) -> &DataLabels
👎Deprecated since 3.0.0:
Use data_labels()
pub fn data_labels_mut(&mut self) -> &mut DataLabels
pub fn get_data_labels_mut(&mut self) -> &mut DataLabels
👎Deprecated since 3.0.0:
Use data_labels_mut()
pub fn set_data_labels(&mut self, value: DataLabels) -> &mut Self
pub fn show_marker(&self) -> &ShowMarker
pub fn get_show_marker(&self) -> &ShowMarker
👎Deprecated since 3.0.0:
Use show_marker()
pub fn show_marker_mut(&mut self) -> &mut ShowMarker
pub fn get_show_marker_mut(&mut self) -> &mut ShowMarker
👎Deprecated since 3.0.0:
Use show_marker_mut()
pub fn set_show_marker(&mut self, value: ShowMarker) -> &mut Self
pub fn smooth(&self) -> &Smooth
pub fn get_smooth(&self) -> &Smooth
👎Deprecated since 3.0.0:
Use smooth()
pub fn smooth_mut(&mut self) -> &mut Smooth
pub fn get_smooth_mut(&mut self) -> &mut Smooth
👎Deprecated since 3.0.0:
Use smooth_mut()
pub fn set_smooth(&mut self, value: Smooth) -> &mut Self
pub fn axis_id(&self) -> &[AxisId]
pub fn get_axis_id(&self) -> &[AxisId]
👎Deprecated since 3.0.0:
Use axis_id()
pub fn axis_id_mut(&mut self) -> &mut Vec<AxisId>
pub fn get_axis_id_mut(&mut self) -> &mut Vec<AxisId>
👎Deprecated since 3.0.0:
Use axis_id_mut()
pub fn set_axis_id(&mut self, value: impl Into<Vec<AxisId>>) -> &mut Self
pub fn add_axis_id(&mut self, value: AxisId) -> &mut Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineChart
impl RefUnwindSafe for LineChart
impl Send for LineChart
impl Sync for LineChart
impl Unpin for LineChart
impl UnsafeUnpin for LineChart
impl UnwindSafe for LineChart
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