FUIChartStyle

public class FUIChartStyle : Equatable

Style definition for the chartView. Gives access to the chart theming.

  • Undocumented

    Declaration

    Swift

    public init()
  • Undocumented

    Declaration

    Swift

    public weak var chartView: FUIChartView?
  • Undocumented

    Declaration

    Swift

    public private(set) var _seriesPaletteInit: Bool { get }
  • Sets the theme palette for label and gridline colors. Setting the pallete:

    chartView.style.themePalette = myThemePalette
    

    Setting individual color property:

    chartView.style.themePalette.primary1 = myColor
    

    Declaration

    Swift

    public var themePalette: ChartThemePalette { get set }
  • Declaration

    Swift

    public static func == (lhs: FUIChartStyle, rhs: FUIChartStyle) -> Bool