Enum gnuplot::Coordinate [−][src]
Expand description
Specifies how to interpret the coordinate passed to a plotting command
Variants
Graph(f64)
Coordinates are done relative to a graph (i.e. an axis set). (0, 0) is the bottom left corner and (1, 1) is the top right corner. You’d use this to place labels and other objects so that they remain in the same place relative to the graph no matter what you have plotted.
Axis(f64)
Coordinates match those on the axes. You’d use this to place labels and other objects relative to regions of interest in the graph (e.g. labeling the peak of a function)
Axis2(f64)
Coordinates match those on the secondary axes. You’d use this to place labels and other objects relative to regions of interest in the graph (e.g. labeling the peak of a function)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Coordinate
impl Send for Coordinate
impl Sync for Coordinate
impl Unpin for Coordinate
impl UnwindSafe for Coordinate
Blanket Implementations
Mutably borrows from an owned value. Read more