BarMarkerType

public enum BarMarkerType : MarkerType

Where the marker lines come from to meet at a specified point.

case none // No overlay markers.
case vertical // Vertical line from top to bottom.
case full // Full width and height of view intersecting at a specified point.
case bottomLeading // From bottom and leading edges meeting at a specified point.
case bottomTrailing // From bottom and trailing edges meeting at a specified point.
case topLeading // From top and leading edges meeting at a specified point.
case topTrailing // From top and trailing edges meeting at a specified point.
  • No overlay markers.

    Declaration

    Swift

    case none
  • Vertical line from top to bottom.

    Declaration

    Swift

    case vertical(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
  • Full width and height of view intersecting at a specified point.

    Declaration

    Swift

    case full(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
  • From bottom and leading edges meeting at a specified point.

    Declaration

    Swift

    case bottomLeading(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
  • From bottom and trailing edges meeting at a specified point.

    Declaration

    Swift

    case bottomTrailing(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
  • From top and leading edges meeting at a specified point.

    Declaration

    Swift

    case topLeading(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
  • From top and trailing edges meeting at a specified point.

    Declaration

    Swift

    case topTrailing(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())