MUBarGraphData

public struct MUBarGraphData

Struct that represent bar data.

  • Defines the title.

    Declaration

    Swift

    public let title: String
  • Defines the value.

    Declaration

    Swift

    public let value: CGFloat
  • Defines the color.

    Declaration

    Swift

    public let color: UIColor
  • Show / hide the indicator.

    Declaration

    Swift

    public let showIndicator: Bool
  • Initializes and returns a newly allocated MUBarGraphData.

    Declaration

    Swift

    public init(title: String, value: CGFloat, color: UIColor, showIndicator: Bool = false)