#[repr(i32)]pub enum ChartType {
Bar = 0,
HorizontalBar = 1,
Line = 2,
Fill = 3,
Spike = 4,
Pie = 5,
SpecialPie = 6,
}
Expand description
Defines the chart types supported by fltk
Variants§
Bar = 0
Bar chart
HorizontalBar = 1
Horizontal bar chart
Line = 2
Line chart
Fill = 3
Fill chart
Spike = 4
Spike chart
Pie = 5
Pie chart
SpecialPie = 6
Special pie chart
Trait Implementations§
Source§impl WidgetType for ChartType
impl WidgetType for ChartType
impl Copy for ChartType
impl Eq for ChartType
impl StructuralPartialEq for ChartType
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