LineMarkerType
public enum LineMarkerType : MarkerType
Where the marker lines come from to meet at a specified point.
case none // No overlay markers.
case indicator(style: DotStyle) // Dot that follows the path.
case vertical(attachment: MarkerAttachment) // Vertical line from top to bottom.
case full(attachment: MarkerAttachment) // Full width and height of view intersecting at a specified point.
case bottomLeading(attachment: MarkerAttachment) // From bottom and leading edges meeting at a specified point.
case bottomTrailing(attachment: MarkerAttachment) // From bottom and trailing edges meeting at a specified point.
case topLeading(attachment: MarkerAttachment) // From top and leading edges meeting at a specified point.
case topTrailing(attachment: MarkerAttachment) // From top and trailing edges meeting at a specified point.
-
No overlay markers.
Declaration
Swift
case none
-
Dot that follows the path.
Declaration
Swift
case indicator(style: DotStyle)
-
Vertical line from top to bottom.
Declaration
Swift
case vertical(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
-
Full width and height of view intersecting at a specified point.
Declaration
Swift
case full(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
-
From bottom and leading edges meeting at a specified point.
Declaration
Swift
case bottomLeading(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
-
From bottom and trailing edges meeting at a specified point.
Declaration
Swift
case bottomTrailing(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
-
From top and leading edges meeting at a specified point.
Declaration
Swift
case topLeading(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
-
From top and trailing edges meeting at a specified point.
Declaration
Swift
case topTrailing(attachment: MarkerAttachment, colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())