PlotOption in gnuplot - Rust

pub enum PlotOption<T> {
Show 15 variants PointSymbol(char), PointSize(f64), Caption(T), LineWidth(f64), Color(ColorType<T>), BorderColor(ColorType<T>), LineStyle(DashType), FillAlpha(f64), FillRegion(FillRegionType), FillPattern(AutoOption<FillPatternType>), ArrowType(ArrowheadType), ArrowSize(f64), WhiskerBars(f64), Axes(XAxis, YAxis), BoxWidth(Vec<f64>),
}
Expand description

An enumeration of plot options you can supply to plotting commands, governing things like line width, color and others

§

Sets the symbol used for points. The valid characters are as follows:

  • . - dot
  • + - plus
  • x - cross
  • * - star
  • s - empty square
  • S - filled square
  • o - empty circle
  • O - filled circle
  • t - empty triangle
  • T - filled triangle
  • d - empty del (upside down triangle)
  • D - filled del (upside down triangle)
  • r - empty rhombus
  • R - filled rhombus
§

Sets the size of the points. The size acts as a multiplier, with 1.0 being the default.

§

Sets the caption of the plot element. Set to empty to hide it from the legend.

§

Sets the width of lines.

§

Sets the color of the plot element. The passed string can be a color name (e.g. “black” works), or an HTML color specifier (e.g. “#FFFFFF” is white). This specifies the fill color of a filled plot.

§

Sets the color of the border of a filled plot (if it has one). The passed string can be a color name (e.g. “black” works), or an HTML color specifier (e.g. “#FFFFFF” is white).

§

Sets the style of the line. Note that not all gnuplot terminals support dashed lines. See DashType for the available styles.

§

Sets the transparency of a filled plot. 0.0 - fully transparent, 1.0 - fully opaque. Cannot be used with FillPattern.

§

Sets the fill region. See FillRegionType for the available regions.

§

Sets the fill pattern. If left at Auto, the pattern alternates automatically. Otherwise, see FillPatternType for the available patterns. Cannot be used with FillAlpha.

§

Sets what an arrowhead looks like

§

Sets the size of the arrowhead. This is specified in the units of graph (i.e. 1.0 would make the arrow as big as the graph).

§

Width of the whisker bars (as a fraction of the box width) for box and whisker plots.

§

Which axis pair to use for the plot element.

§

Box width set per box for box plots: each element is the width of one box

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§