pub struct Series {
pub index: u32,
pub order: u32,
pub name: Option<StringRef>,
pub categories: Option<AxisData>,
pub values: NumericData,
pub bubble_size: Option<NumericData>,
pub sp_pr: Option<CT_ShapeProperties>,
pub data_labels: Option<CT_DLbls>,
/* private fields */
}Expand description
The common formula-backed payload of one ChartML series.
Fields§
§index: u32§order: u32§name: Option<StringRef>§categories: Option<AxisData>§values: NumericData§bubble_size: Option<NumericData>§sp_pr: Option<CT_ShapeProperties>§data_labels: Option<CT_DLbls>Implementations§
Trait Implementations§
impl StructuralPartialEq for Series
Auto Trait Implementations§
impl Freeze for Series
impl RefUnwindSafe for Series
impl Send for Series
impl Sync for Series
impl Unpin for Series
impl UnsafeUnpin for Series
impl UnwindSafe for Series
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