Enum gnuplot::LegendOption [−][src]
pub enum LegendOption<T> { Reverse, Invert, Horizontal, Placement(AlignType, AlignType), Title(T), MaxRows(u32), MaxCols(u32), }
Expand description
Legend options
Variants
Puts curve samples to the left of the label
Displays legend entries in opposite order
Makes the legend horizontal (default is vertical)
Specifies the location of the legend. The first argument specifies the horizontal placement with respect to its position, and the second argument specifies the vertical placement
Title of the legend
MaxRows(u32)
Specifies the maximum number of rows, when the legend is vertical
MaxCols(u32)
Specifies the maximum number of columns, when the legend is horizontal
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for LegendOption<T> where
T: RefUnwindSafe,
impl<T> Send for LegendOption<T> where
T: Send,
impl<T> Sync for LegendOption<T> where
T: Sync,
impl<T> Unpin for LegendOption<T> where
T: Unpin,
impl<T> UnwindSafe for LegendOption<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more