pub struct Series {
pub name: Option<String>,
pub categories: Option<String>,
pub values: String,
pub bubble_sizes: Option<String>,
}Expand description
One chart data series. Ranges are A1 references into a sheet, e.g.
Sheet1!$B$2:$B$9.
Fields§
§name: Option<String>Optional series name.
categories: Option<String>Category (X) axis range (e.g. labels), or None for 1..N.
values: StringValue (Y) axis range.
bubble_sizes: Option<String>Bubble size range for bubble charts.
Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.