pub struct Pie3DChart {
pub vary_colors: Option<bool>,
pub series: Vec<PieSeries>,
}Expand description
A 3D pie chart (<c:pie3DChart>, CT_Pie3DChart) — reuses EG_PieChartShared exactly like
PieChart/DoughnutChart (same PieSeries), with no fields of its own at all —
confirmed against the schema: CT_Pie3DChart is just the shared group plus extLst, unlike
DoughnutChart which adds holeSize/firstSliceAng. Structurally axis-less, like every
other pie-family chart.
Not modeled: dLbls.
Fields§
§vary_colors: Option<bool>§series: Vec<PieSeries>Implementations§
Source§impl Pie3DChart
impl Pie3DChart
pub fn new() -> Pie3DChart
pub fn with_vary_colors(self, vary: bool) -> Pie3DChart
pub fn with_series(self, series: PieSeries) -> Pie3DChart
Trait Implementations§
Source§impl Clone for Pie3DChart
impl Clone for Pie3DChart
Source§fn clone(&self) -> Pie3DChart
fn clone(&self) -> Pie3DChart
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 Pie3DChart
impl Debug for Pie3DChart
Source§impl Default for Pie3DChart
impl Default for Pie3DChart
Source§fn default() -> Pie3DChart
fn default() -> Pie3DChart
Returns the “default value” for a type. Read more
Source§impl PartialEq for Pie3DChart
impl PartialEq for Pie3DChart
impl StructuralPartialEq for Pie3DChart
Auto Trait Implementations§
impl Freeze for Pie3DChart
impl RefUnwindSafe for Pie3DChart
impl Send for Pie3DChart
impl Sync for Pie3DChart
impl Unpin for Pie3DChart
impl UnsafeUnpin for Pie3DChart
impl UnwindSafe for Pie3DChart
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