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 }
-
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(_ dimensionIndex: Int) -> [Double?]?