Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTPlotSpaceAnnotation.h
Go to the documentation of this file.
1 #import "CPTAnnotation.h"
2 
3 @class CPTPlotSpace;
4 
6 
7 @property (nonatomic, readwrite, copy, nullable) CPTNumberArray *anchorPlotPoint;
8 @property (nonatomic, readonly, nonnull) CPTPlotSpace *plotSpace;
9 
12 -(nonnull instancetype)initWithPlotSpace:(nonnull CPTPlotSpace *)space anchorPlotPoint:(nullable CPTNumberArray *)plotPoint NS_DESIGNATED_INITIALIZER;
13 -(nullable instancetype)initWithCoder:(nonnull NSCoder *)coder NS_DESIGNATED_INITIALIZER;
15 
16 @end
CPTAnnotation
An annotation positions a content layer relative to some anchor point.
Definition: CPTAnnotation.h:19
CPTPlotSpaceAnnotation
Positions a content layer relative to some anchor point in a plot space.
Definition: CPTPlotSpaceAnnotation.h:6
CPTPlotSpace
Defines the coordinate system of a plot.
Definition: CPTPlotSpace.h:178
CPTAnnotation.h
-[NSObject copy]
id copy
NSArray
CPTPlotSpaceAnnotation::plotSpace
CPTPlotSpace * plotSpace
The plot space which the anchor is defined in.
Definition: CPTPlotSpaceAnnotation.h:8
CPTPlotSpaceAnnotation::anchorPlotPoint
CPTNumberArray * anchorPlotPoint
An array of NSDecimalNumber objects giving the anchor plot coordinates.
Definition: CPTPlotSpaceAnnotation.h:7
NSCoder