pub struct Series {
pub name: Option<String>,
pub categories: Vec<String>,
pub values: Vec<String>,
}Expand description
One series of a chart.
Fields§
§name: Option<String>§categories: Vec<String>Category labels (c:cat, or c:xVal for scatter and bubble charts), in point order.
values: Vec<String>Values (c:val, or c:yVal) as written, in point order.
Trait Implementations§
impl Eq for Series
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