FUIChartSeries

public class FUIChartSeries

A series is a collection of related plot items or categories.

Color is often used to visually associate items with a particular series.

The FUIChartSeries class provides properties for all items in an individual series.

  • Color used to render the series.

    Declaration

    Swift

    public var color: UIColor? { get set }
  • Color used to render the series of fill area.

    Declaration

    Swift

    public var fillColor: UIColor? { get set }
  • Number of values, or “categories”, in the series.

    Declaration

    Swift

    public var numberOfValues: Int { get }
  • Provides a value for the series at the given category and dimension indices.

    Declaration

    Swift

    public func valueForCategory(_ categoryIndex: Int, dimension dimensionIndex: Int) -> Double?
  • Provides all values for the series in the given category range and dimension index.

    Declaration

    Swift

    public func valuesInCategoryRange(_ categoryRange: CountableClosedRange<Int>, dimension dimensionIndex: Int) -> [Double?]?
  • Provides all values in the series for the given dimension.

    Declaration

    Swift

    public func valuesForDimension(_ dimension: Int = 0) -> [Double?]?