Struct PlotArea

Source
pub struct PlotArea { /* private fields */ }

Implementations§

Source§

impl PlotArea

Source

pub fn get_layout(&self) -> &Layout

Source

pub fn get_layout_mut(&mut self) -> &mut Layout

Source

pub fn set_layout(&mut self, value: Layout) -> &mut Self

Source

pub fn get_line_chart(&self) -> Option<&LineChart>

Source

pub fn get_line_chart_mut(&mut self) -> Option<&mut LineChart>

Source

pub fn set_line_chart(&mut self, value: LineChart) -> &mut Self

Source

pub fn get_line_3d_chart(&self) -> Option<&Line3DChart>

Source

pub fn get_line_3d_chart_mut(&mut self) -> Option<&mut Line3DChart>

Source

pub fn set_line_3d_chart(&mut self, value: Line3DChart) -> &mut Self

Source

pub fn get_pie_chart(&self) -> Option<&PieChart>

Source

pub fn get_pie_chart_mut(&mut self) -> Option<&mut PieChart>

Source

pub fn set_pie_chart(&mut self, value: PieChart) -> &mut Self

Source

pub fn get_pie_3d_chart(&self) -> Option<&Pie3DChart>

Source

pub fn get_pie_3d_chart_mut(&mut self) -> Option<&mut Pie3DChart>

Source

pub fn set_pie_3d_chart(&mut self, value: Pie3DChart) -> &mut Self

Source

pub fn get_doughnut_chart(&self) -> Option<&DoughnutChart>

Source

pub fn get_doughnut_chart_mut(&mut self) -> Option<&mut DoughnutChart>

Source

pub fn set_doughnut_chart(&mut self, value: DoughnutChart) -> &mut Self

Source

pub fn get_scatter_chart(&self) -> Option<&ScatterChart>

Source

pub fn get_scatter_chart_mut(&mut self) -> Option<&mut ScatterChart>

Source

pub fn set_scatter_chart(&mut self, value: ScatterChart) -> &mut Self

Source

pub fn get_bar_chart(&self) -> Option<&BarChart>

Source

pub fn get_bar_chart_mut(&mut self) -> Option<&mut BarChart>

Source

pub fn set_bar_chart(&mut self, value: BarChart) -> &mut Self

Source

pub fn get_bar_3d_chart(&self) -> Option<&Bar3DChart>

Source

pub fn get_bar_3d_chart_mut(&mut self) -> Option<&mut Bar3DChart>

Source

pub fn set_bar_3d_chart(&mut self, value: Bar3DChart) -> &mut Self

Source

pub fn get_radar_chart(&self) -> Option<&RadarChart>

Source

pub fn get_radar_chart_mut(&mut self) -> Option<&mut RadarChart>

Source

pub fn set_radar_chart(&mut self, value: RadarChart) -> &mut Self

Source

pub fn get_bubble_chart(&self) -> Option<&BubbleChart>

Source

pub fn get_bubble_chart_mut(&mut self) -> Option<&mut BubbleChart>

Source

pub fn set_bubble_chart(&mut self, value: BubbleChart) -> &mut Self

Source

pub fn get_area_chart(&self) -> Option<&AreaChart>

Source

pub fn get_area_chart_mut(&mut self) -> Option<&mut AreaChart>

Source

pub fn set_area_chart(&mut self, value: AreaChart) -> &mut Self

Source

pub fn get_area_3d_chart(&self) -> Option<&Area3DChart>

Source

pub fn get_area_3d_chart_mut(&mut self) -> Option<&mut Area3DChart>

Source

pub fn set_area_3d_chart(&mut self, value: Area3DChart) -> &mut Self

Source

pub fn get_of_pie_chart(&self) -> Option<&OfPieChart>

Source

pub fn get_of_pie_chart_mut(&mut self) -> Option<&mut OfPieChart>

Source

pub fn set_of_pie_chart(&mut self, value: OfPieChart) -> &mut Self

Source

pub fn get_category_axis(&self) -> &[CategoryAxis]

Source

pub fn get_category_axis_mut(&mut self) -> &mut ThinVec<CategoryAxis>

Source

pub fn set_category_axis( &mut self, value: impl Into<ThinVec<CategoryAxis>>, ) -> &mut Self

Source

pub fn add_category_axis(&mut self, value: CategoryAxis) -> &mut Self

Source

pub fn get_date_axis(&self) -> &[DateAxis]

Source

pub fn get_date_axis_mut(&mut self) -> &mut ThinVec<DateAxis>

Source

pub fn set_date_axis( &mut self, value: impl Into<ThinVec<DateAxis>>, ) -> &mut Self

Source

pub fn add_date_axis(&mut self, value: DateAxis) -> &mut Self

Source

pub fn get_value_axis(&self) -> &[ValueAxis]

Source

pub fn get_value_axis_mut(&mut self) -> &mut ThinVec<ValueAxis>

Source

pub fn set_value_axis( &mut self, value: impl Into<ThinVec<ValueAxis>>, ) -> &mut Self

Source

pub fn add_value_axis(&mut self, value: ValueAxis) -> &mut Self

Source

pub fn get_series_axis(&self) -> &[SeriesAxis]

Source

pub fn get_series_axis_mut(&mut self) -> &mut ThinVec<SeriesAxis>

Source

pub fn set_series_axis( &mut self, value: impl Into<ThinVec<SeriesAxis>>, ) -> &mut Self

Source

pub fn add_series_axis(&mut self, value: SeriesAxis) -> &mut Self

Source

pub fn get_shape_properties(&self) -> Option<&ShapeProperties>

Source

pub fn get_shape_properties_mut(&mut self) -> Option<&mut ShapeProperties>

Source

pub fn set_shape_properties(&mut self, value: ShapeProperties) -> &mut Self

Source

pub fn set_grouping(&mut self, value: GroupingValues) -> &mut Self

Source

pub fn get_area_chart_series_list_mut(&mut self) -> &mut AreaChartSeriesList

Source

pub fn get_formula_mut(&mut self) -> Vec<&mut Formula>

Trait Implementations§

Source§

impl Clone for PlotArea

Source§

fn clone(&self) -> PlotArea

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PlotArea

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PlotArea

Source§

fn default() -> PlotArea

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.