pub struct PlotArea { /* private fields */ }Implementations§
Source§impl PlotArea
impl PlotArea
pub fn get_layout(&self) -> &Layout
pub fn get_layout_mut(&mut self) -> &mut Layout
pub fn set_layout(&mut self, value: Layout) -> &mut Self
pub fn get_line_chart(&self) -> Option<&LineChart>
pub fn get_line_chart_mut(&mut self) -> Option<&mut LineChart>
pub fn set_line_chart(&mut self, value: LineChart) -> &mut Self
pub fn get_line_3d_chart(&self) -> Option<&Line3DChart>
pub fn get_line_3d_chart_mut(&mut self) -> Option<&mut Line3DChart>
pub fn set_line_3d_chart(&mut self, value: Line3DChart) -> &mut Self
pub fn get_pie_chart(&self) -> Option<&PieChart>
pub fn get_pie_chart_mut(&mut self) -> Option<&mut PieChart>
pub fn set_pie_chart(&mut self, value: PieChart) -> &mut Self
pub fn get_pie_3d_chart(&self) -> Option<&Pie3DChart>
pub fn get_pie_3d_chart_mut(&mut self) -> Option<&mut Pie3DChart>
pub fn set_pie_3d_chart(&mut self, value: Pie3DChart) -> &mut Self
pub fn get_doughnut_chart(&self) -> Option<&DoughnutChart>
pub fn get_doughnut_chart_mut(&mut self) -> Option<&mut DoughnutChart>
pub fn set_doughnut_chart(&mut self, value: DoughnutChart) -> &mut Self
pub fn get_scatter_chart(&self) -> Option<&ScatterChart>
pub fn get_scatter_chart_mut(&mut self) -> Option<&mut ScatterChart>
pub fn set_scatter_chart(&mut self, value: ScatterChart) -> &mut Self
pub fn get_bar_chart(&self) -> Option<&BarChart>
pub fn get_bar_chart_mut(&mut self) -> Option<&mut BarChart>
pub fn set_bar_chart(&mut self, value: BarChart) -> &mut Self
pub fn get_bar_3d_chart(&self) -> Option<&Bar3DChart>
pub fn get_bar_3d_chart_mut(&mut self) -> Option<&mut Bar3DChart>
pub fn set_bar_3d_chart(&mut self, value: Bar3DChart) -> &mut Self
pub fn get_radar_chart(&self) -> Option<&RadarChart>
pub fn get_radar_chart_mut(&mut self) -> Option<&mut RadarChart>
pub fn set_radar_chart(&mut self, value: RadarChart) -> &mut Self
pub fn get_bubble_chart(&self) -> Option<&BubbleChart>
pub fn get_bubble_chart_mut(&mut self) -> Option<&mut BubbleChart>
pub fn set_bubble_chart(&mut self, value: BubbleChart) -> &mut Self
pub fn get_area_chart(&self) -> Option<&AreaChart>
pub fn get_area_chart_mut(&mut self) -> Option<&mut AreaChart>
pub fn set_area_chart(&mut self, value: AreaChart) -> &mut Self
pub fn get_area_3d_chart(&self) -> Option<&Area3DChart>
pub fn get_area_3d_chart_mut(&mut self) -> Option<&mut Area3DChart>
pub fn set_area_3d_chart(&mut self, value: Area3DChart) -> &mut Self
pub fn get_of_pie_chart(&self) -> Option<&OfPieChart>
pub fn get_of_pie_chart_mut(&mut self) -> Option<&mut OfPieChart>
pub fn set_of_pie_chart(&mut self, value: OfPieChart) -> &mut Self
pub fn get_category_axis(&self) -> &[CategoryAxis]
pub fn get_category_axis_mut(&mut self) -> &mut ThinVec<CategoryAxis>
pub fn set_category_axis( &mut self, value: impl Into<ThinVec<CategoryAxis>>, ) -> &mut Self
pub fn add_category_axis(&mut self, value: CategoryAxis) -> &mut Self
pub fn get_date_axis(&self) -> &[DateAxis]
pub fn get_date_axis_mut(&mut self) -> &mut ThinVec<DateAxis>
pub fn set_date_axis( &mut self, value: impl Into<ThinVec<DateAxis>>, ) -> &mut Self
pub fn add_date_axis(&mut self, value: DateAxis) -> &mut Self
pub fn get_value_axis(&self) -> &[ValueAxis]
pub fn get_value_axis_mut(&mut self) -> &mut ThinVec<ValueAxis>
pub fn set_value_axis( &mut self, value: impl Into<ThinVec<ValueAxis>>, ) -> &mut Self
pub fn add_value_axis(&mut self, value: ValueAxis) -> &mut Self
pub fn get_series_axis(&self) -> &[SeriesAxis]
pub fn get_series_axis_mut(&mut self) -> &mut ThinVec<SeriesAxis>
pub fn set_series_axis( &mut self, value: impl Into<ThinVec<SeriesAxis>>, ) -> &mut Self
pub fn add_series_axis(&mut self, value: SeriesAxis) -> &mut Self
pub fn get_shape_properties(&self) -> Option<&ShapeProperties>
pub fn get_shape_properties_mut(&mut self) -> Option<&mut ShapeProperties>
pub fn set_shape_properties(&mut self, value: ShapeProperties) -> &mut Self
pub fn set_grouping(&mut self, value: GroupingValues) -> &mut Self
pub fn get_area_chart_series_list_mut(&mut self) -> &mut AreaChartSeriesList
pub fn get_formula_mut(&mut self) -> Vec<&mut Formula>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlotArea
impl RefUnwindSafe for PlotArea
impl Send for PlotArea
impl Sync for PlotArea
impl Unpin for PlotArea
impl UnwindSafe for PlotArea
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