Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTXYAxis.h
Go to the documentation of this file.
1 #import "CPTAxis.h"
2 
3 @class CPTConstraints;
4 
5 @interface CPTXYAxis : CPTAxis
6 
9 @property (nonatomic, readwrite, strong, nullable) NSNumber *orthogonalPosition;
10 @property (nonatomic, readwrite, strong, nullable) CPTConstraints *axisConstraints;
12 
13 @end
NSNumber
CPTConstraints
Implements a one-dimensional constrained position within a given numeric range.
Definition: CPTConstraints.h:1
CPTAxis.h
CPTXYAxis::orthogonalPosition
NSNumber * orthogonalPosition
The data coordinate value where the axis crosses the orthogonal axis. If the axisConstraints is non-n...
Definition: CPTXYAxis.h:9
CPTXYAxis
A 2-dimensional cartesian (X-Y) axis class.
Definition: CPTXYAxis.h:6
CPTXYAxis::axisConstraints
CPTConstraints * axisConstraints
The constraints used when positioning relative to the plot area. If nil (the default),...
Definition: CPTXYAxis.h:10
CPTAxis
An abstract axis class.
Definition: CPTAxis.h:198