Enum gnuplot::TickOption[][src]

pub enum TickOption<T> {
    OnAxis(bool),
    Mirror(bool),
    Inward(bool),
    MinorScale(f64),
    MajorScale(f64),
    Format(T),
}

An enumeration of axis tick options

Variants

Specifies whether the ticks are drawn at the borders of the plot, or on the axis

If the axes are drawn on the border, this specifies whether to draw the ticks on the opposite border as well

If the axes are drawn on the border, this specifies whether to draw the ticks pointing inward or outward

Sets the scale of the minor ticks

Sets the scale of the major ticks

Format of the tick labels, e.g. "%.1f ms" will produces labels with "1 ms, 2 ms" etc.

Trait Implementations

impl<T: Copy> Copy for TickOption<T>
[src]

impl<T: Clone> Clone for TickOption<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for TickOption<T> where
    T: Send

impl<T> Sync for TickOption<T> where
    T: Sync