TickOption in gnuplot - Rust

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

An enumeration of axis tick options

§

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.

Source§
Source§
Source§
Source§

Tests for self and other values to be equal, and is used by ==.

1.0.0 · Source§

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Source§
Source§

This method returns an ordering between self and other values if one exists. Read more

1.0.0 · Source§

Tests less than (for self and other) and is used by the < operator. Read more

1.0.0 · Source§

Tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0 · Source§

Tests greater than (for self and other) and is used by the > operator. Read more

1.0.0 · Source§

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Source§
Source§