PointMode
public enum PointMode : UInt32
Selects if an array of points are drawn as discrete points, as lines, or as an open polygon.
-
Draw each point separately.
Declaration
Swift
case points = 0 -
Draw each pair of points as a line segment.
Declaration
Swift
case lines = 1 -
Draw the array of points as a open polygon.
Declaration
Swift
case polygon = 2
View on GitHub
Install in Dash
PointMode Enumeration Reference