BarMarkerType
public enum BarMarkerType : MarkerTypeWhere 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. DeclarationSwift case none
- 
                  
                  Vertical line from top to bottom. DeclarationSwift case vertical(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
- 
                  
                  Full width and height of view intersecting at a specified point. DeclarationSwift case full(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
- 
                  
                  From bottom and leading edges meeting at a specified point. DeclarationSwift case bottomLeading(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
- 
                  
                  From bottom and trailing edges meeting at a specified point. DeclarationSwift case bottomTrailing(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
- 
                  
                  From top and leading edges meeting at a specified point. DeclarationSwift case topLeading(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
- 
                  
                  From top and trailing edges meeting at a specified point. DeclarationSwift case topTrailing(colour: Color = Color.primary, style: StrokeStyle = StrokeStyle())
