Enum gnuplot::TickOption [] [src]

pub enum TickOption {
    OnAxis(bool),
    Mirror(bool),
    Inward(bool),
    MinorScale(f64),
    MajorScale(f64),
}

An enumeration of axis tick options

Variants

OnAxis(bool)

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

Mirror(bool)

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

Inward(bool)

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

MinorScale(f64)

Sets the scale of the minor ticks

MajorScale(f64)

Sets the scale of the major ticks

Trait Implementations

impl Clone for TickOption
[src]

fn clone(&self) -> TickOption

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for TickOption
[src]