RangedBarDataPoint
public struct RangedBarDataPoint : CTRangedBarDataPointData for a single ranged bar chart data point.
- 
                  
                  DeclarationSwift public let id: UUID
- 
                  
                  DeclarationSwift public var upperValue: Double
- 
                  
                  DeclarationSwift public var lowerValue: Double
- 
                  
                  DeclarationSwift public var xAxisLabel: String?
- 
                  
                  DeclarationSwift public var description: String?
- 
                  
                  DeclarationSwift public var date: Date?
- 
                  
                  DeclarationSwift public var colour: ColourStyle
- 
                  
                  DeclarationSwift public var legendTag: String
- 
                  
                  Data model for a single data point with colour for use with a ranged bar chart. DeclarationSwift public init( lowerValue: Double, upperValue: Double, xAxisLabel: String? = nil, description: String? = nil, date: Date? = nil, colour: ColourStyle = ColourStyle(colour: .red) )ParameterslowerValueValue of the lower range of the data point. upperValueValue of the upper range of the data point. xAxisLabelLabel that can be shown on the X axis. descriptionA longer label that can be shown on touch input. dateDate of the data point if any data based calculations are required. colourColour styling for the fill. 
- 
                  
                  DeclarationSwift public typealias ID = UUID
