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.