Core Plot (macOS)
Cocoa plotting framework for macOS, iOS, and tvOS
|
Go to the source code of this file.
Classes | |
protocol | <CPTPlotDataSource> |
A plot data source. More... | |
protocol | <CPTPlotDelegate> |
Plot delegate. More... | |
class | CPTPlot |
An abstract plot class. More... | |
category | CPTPlot(AbstractMethods) |
CPTPlot abstract methods—must be overridden by subclasses. More... | |
Typedefs | |
typedef NSString * | CPTPlotBinding |
Plot bindings. More... | |
typedef NSArray< __kindof CPTPlot * > | CPTPlotArray |
An array of plots. More... | |
typedef NSMutableArray< __kindof CPTPlot * > | CPTMutablePlotArray |
A mutable array of plots. More... | |
Enumerations | |
enum | CPTPlotCachePrecision : NSInteger { CPTPlotCachePrecisionAuto, CPTPlotCachePrecisionDouble, CPTPlotCachePrecisionDecimal } |
Enumeration of cache precisions. More... | |
Variables | |
CPTPlotBinding __nonnull const | CPTPlotBindingDataLabels |
Plot data labels. More... | |
typedef NSMutableArray<__kindof CPTPlot *> CPTMutablePlotArray |
A mutable array of plots.
typedef NSArray<__kindof CPTPlot *> CPTPlotArray |
An array of plots.
typedef NSString* CPTPlotBinding |
Plot bindings.
enum CPTPlotCachePrecision : NSInteger |
Enumeration of cache precisions.
Enumerator | |
---|---|
CPTPlotCachePrecisionAuto | Cache precision is determined automatically from the data. All cached data will be converted to match the last data loaded. |
CPTPlotCachePrecisionDouble | All cached data will be converted to double precision. |
CPTPlotCachePrecisionDecimal | All cached data will be converted to NSDecimal. |