pub enum ChartType {
line,
area,
stacked,
}
Expand description
The type of graphical rendering.
Variants§
line
Displays information as a series of data points connected by straight line segments.
area
When multiple attributes are included, the first attribute is plotted as a line with a color fill followed by the second attribute, and so on. Technically, this chart type is based on the Line Chart and represents a filled area between the zero line and the line that connects data points.
stacked
Stacked Area Chart is plotted in the form of several area series stacked on top of one another. The height of each series is determined by the value in each data point.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChartType
impl RefUnwindSafe for ChartType
impl Send for ChartType
impl Sync for ChartType
impl Unpin for ChartType
impl UnwindSafe for ChartType
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