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.