pub struct PieChart {
pub vary_colors: Option<bool>,
pub series: Vec<PieSeries>,
pub first_slice_angle_degrees: Option<u16>,
}Expand description
A pie chart (<c:pieChart>, CT_PieChart) — structurally axis-less (see CategoryAxis’s doc
comment for the schema confirmation), unlike BarChart/LineChart.
Not modeled: dLbls. See DoughnutChart for the closely related ring-shaped variant, and
Pie3DChart for the 3D counterpart (which, per the schema, has no firstSliceAng at all,
unlike DoughnutChart).
Fields§
§vary_colors: Option<bool>§series: Vec<PieSeries>§first_slice_angle_degrees: Option<u16><c:firstSliceAng val=".."/> — 0.=360 degrees.
Implementations§
Trait Implementations§
impl StructuralPartialEq for PieChart
Auto Trait Implementations§
impl Freeze for PieChart
impl RefUnwindSafe for PieChart
impl Send for PieChart
impl Sync for PieChart
impl Unpin for PieChart
impl UnsafeUnpin for PieChart
impl UnwindSafe for PieChart
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