Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTXYGraph.h
Go to the documentation of this file.
1 #import "CPTDefinitions.h"
2 #import "CPTGraph.h"
3 
4 @interface CPTXYGraph : CPTGraph
5 
8 -(nonnull instancetype)initWithFrame:(CGRect)newFrame xScaleType:(CPTScaleType)newXScaleType yScaleType:(CPTScaleType)newYScaleType NS_DESIGNATED_INITIALIZER;
9 
10 -(nullable instancetype)initWithCoder:(nonnull NSCoder *)coder NS_DESIGNATED_INITIALIZER;
11 -(nonnull instancetype)initWithLayer:(nonnull id)layer NS_DESIGNATED_INITIALIZER;
13 
14 @end
CPTGraph.h
CPTXYGraph
A graph using a cartesian (X-Y) plot space.
Definition: CPTXYGraph.h:5
CPTDefinitions.h
-[CALayer initWithLayer]
id initWithLayer
CPTScaleType
CPTScaleType
Enumeration of axis scale types.
Definition: CPTDefinitions.h:152
CGRect
typedef CGRect
CPTGraph
An abstract graph class.
Definition: CPTGraph.h:74
NSCoder