pub enum Curve<X, Y> {
Dots {
x: X,
y: Y,
},
Impulses {
x: X,
y: Y,
},
Lines {
x: X,
y: Y,
},
LinesPoints {
x: X,
y: Y,
},
Points {
x: X,
y: Y,
},
Steps {
x: X,
y: Y,
},
}
A minimally sized dot on each data point
Fields of Dots
X coordinate of the data points
Y coordinate of the data points
A vertical "impulse" on each data point
Fields of Impulses
X coordinate of the data points
Y coordinate of the data points
Line that joins the data points
Fields of Lines
X coordinate of the data points
Y coordinate of the data points
Line with a point on each data point
Fields of LinesPoints
X coordinate of the data points
Y coordinate of the data points
A point on each data point
Fields of Points
X coordinate of the data points
Y coordinate of the data points
An step _| between each data point
Fields of Steps
X coordinate of the data points
Y coordinate of the data points
The properties associated to the plot
Plots some data with some configuration
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
Mutably borrows from an owned value. Read more