Core Plot (macOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTGraphHostingView.h
Go to the documentation of this file.
1 #import <Cocoa/Cocoa.h>
2 
3 @class CPTGraph;
4 
6 
9 @property (nonatomic, readwrite, strong, nullable) CPTGraph *hostedGraph;
11 
14 @property (nonatomic, readwrite, assign) NSRect printRect;
16 
19 @property (nonatomic, readwrite, strong, nullable) NSCursor *closedHandCursor;
20 @property (nonatomic, readwrite, strong, nullable) NSCursor *openHandCursor;
22 
25 @property (nonatomic, readwrite, assign) BOOL allowPinchScaling;
27 
28 @end
NSCoding-p
CPTGraphHostingView::openHandCursor
NSCursor * openHandCursor
The cursor displayed when the mouse pointer is over a plot area mapped to a plot space that allows us...
Definition: CPTGraphHostingView.h:20
NSView
CPTGraphHostingView::closedHandCursor
NSCursor * closedHandCursor
The cursor displayed when the user is actively dragging any plot space.
Definition: CPTGraphHostingView.h:19
CPTGraphHostingView::printRect
NSRect printRect
The bounding rectangle used when printing this view. Default is NSZeroRect.
Definition: CPTGraphHostingView.h:14
CPTGraphHostingView
A container view for displaying a CPTGraph.
Definition: CPTGraphHostingView.h:5
CPTGraphHostingView::allowPinchScaling
BOOL allowPinchScaling
Whether a pinch gesture will trigger plot space scaling. Default is YES.
Definition: CPTGraphHostingView.h:25
CPTGraph
An abstract graph class.
Definition: CPTGraph.h:74
NSSecureCoding-p
CPTGraphHostingView::hostedGraph
CPTGraph * hostedGraph
The CPTGraph hosted inside this view.
Definition: CPTGraphHostingView.h:9