LineCurve enum

How a line series connects its points.

Inheritance
Available extensions

Values

straight → const LineCurve

Straight segments (default).

monotoneHalfX → const LineCurve

Monotone half-x cubic smoothing: control points at the horizontal midpoint, flat at each vertex, so the curve never overshoots a data point vertically.

cardinal → const LineCurve

Cardinal-spline smoothing (smoothness 0.35). Rounder than monotoneHalfX, but it may overshoot a data point. See addCardinal.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<LineCurve>
A constant List of the values in this enum, in order of their declaration.