FUIChartSeriesCollection
public class FUIChartSeriesCollection
A Swift Collection of FUIChartSeries instances presented by the chart.
The number of series provided by the Collection is determined by the data source and is not internally capped.
-
Colors used to render the series.
Colors will be reused when fewer colors are provided than the number of series.
let colorIndex = seriesIndex % colors.count
Declaration
Swift
public var colors: [UIColor] { get set }
-
Read only. Returns the maximum number of values across all series.
Declaration
Swift
public var maximumNumberOfValues: Int { get }
-
Properties for the points rendered in all line series.
Declaration
Swift
public let points: FUIChartPointAttributes
-
Declaration
Swift
public typealias Iterator = AnyIterator<FUIChartSeries>
-
Declaration
Swift
public func makeIterator() -> Iterator