pub struct Area3DChart {
pub grouping: Option<LineGrouping>,
pub vary_colors: Option<bool>,
pub series: Vec<AreaSeries>,
pub gap_depth_percent: Option<i32>,
pub category_axis_id: u32,
pub value_axis_id: u32,
pub series_axis_id: Option<u32>,
}Expand description
A 3D area chart (<c:area3DChart>, CT_Area3DChart) — reuses EG_AreaChartShared exactly like
AreaChart (same AreaSeries, grouping: Option<LineGrouping> genuinely optional here
too). Like Bar3DChart, the third (series) axis id is genuinely optional (axId minOccurs="2" maxOccurs="3").
Not modeled: dLbls, dropLines.
Fields§
§grouping: Option<LineGrouping>§vary_colors: Option<bool>§series: Vec<AreaSeries>§gap_depth_percent: Option<i32><c:gapDepth val="..%"/> — 0.=500, schema default 150.
category_axis_id: u32§value_axis_id: u32§series_axis_id: Option<u32>Implementations§
Source§impl Area3DChart
impl Area3DChart
pub fn new(category_axis_id: u32, value_axis_id: u32) -> Area3DChart
pub fn with_grouping(self, grouping: LineGrouping) -> Area3DChart
pub fn with_vary_colors(self, vary: bool) -> Area3DChart
pub fn with_series(self, series: AreaSeries) -> Area3DChart
pub fn with_gap_depth_percent(self, percent: i32) -> Area3DChart
pub fn with_series_axis_id(self, id: u32) -> Area3DChart
Trait Implementations§
Source§impl Clone for Area3DChart
impl Clone for Area3DChart
Source§fn clone(&self) -> Area3DChart
fn clone(&self) -> Area3DChart
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Area3DChart
impl Debug for Area3DChart
Source§impl PartialEq for Area3DChart
impl PartialEq for Area3DChart
impl StructuralPartialEq for Area3DChart
Auto Trait Implementations§
impl Freeze for Area3DChart
impl RefUnwindSafe for Area3DChart
impl Send for Area3DChart
impl Sync for Area3DChart
impl Unpin for Area3DChart
impl UnsafeUnpin for Area3DChart
impl UnwindSafe for Area3DChart
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