pub struct PlotArea {Show 20 fields
pub layout: Option<Layout>,
pub bar_chart: Option<BarChart>,
pub bar_3d_chart: Option<Bar3DChart>,
pub line_chart: Option<LineChart>,
pub line_3d_chart: Option<Line3DChart>,
pub pie_chart: Option<PieChart>,
pub pie_3d_chart: Option<Pie3DChart>,
pub doughnut_chart: Option<DoughnutChart>,
pub area_chart: Option<AreaChart>,
pub area_3d_chart: Option<Area3DChart>,
pub scatter_chart: Option<ScatterChart>,
pub bubble_chart: Option<BubbleChart>,
pub radar_chart: Option<RadarChart>,
pub stock_chart: Option<StockChart>,
pub surface_chart: Option<SurfaceChart>,
pub surface_3d_chart: Option<Surface3DChart>,
pub of_pie_chart: Option<OfPieChart>,
pub cat_ax: Option<CatAx>,
pub val_ax: Option<ValAx>,
pub ser_ax: Option<SerAx>,
}Expand description
Plot area containing chart type definitions and axes.
Fields§
§layout: Option<Layout>§bar_chart: Option<BarChart>§bar_3d_chart: Option<Bar3DChart>§line_chart: Option<LineChart>§line_3d_chart: Option<Line3DChart>§pie_chart: Option<PieChart>§pie_3d_chart: Option<Pie3DChart>§doughnut_chart: Option<DoughnutChart>§area_chart: Option<AreaChart>§area_3d_chart: Option<Area3DChart>§scatter_chart: Option<ScatterChart>§bubble_chart: Option<BubbleChart>§radar_chart: Option<RadarChart>§stock_chart: Option<StockChart>§surface_chart: Option<SurfaceChart>§surface_3d_chart: Option<Surface3DChart>§of_pie_chart: Option<OfPieChart>§cat_ax: Option<CatAx>§val_ax: Option<ValAx>§ser_ax: Option<SerAx>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlotArea
impl<'de> Deserialize<'de> for PlotArea
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
impl StructuralPartialEq for PlotArea
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