Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
CPTGridLines.h
Go to the documentation of this file.
1 #import "CPTLayer.h"
2 
3 @class CPTAxis;
4 
5 @interface CPTGridLines : CPTLayer
6 
7 @property (nonatomic, readwrite, cpt_weak_property, nullable) CPTAxis *axis;
8 @property (nonatomic, readwrite) BOOL major;
9 
10 @end
CPTGridLines::axis
CPTAxis * axis
The axis.
Definition: CPTGridLines.h:7
CPTGridLines
An abstract class that draws grid lines for an axis.
Definition: CPTGridLines.h:6
CPTGridLines::major
BOOL major
If YES, draw the major grid lines, else draw the minor grid lines.
Definition: CPTGridLines.h:8
CPTLayer
Base class for all Core Animation layers in Core Plot.
Definition: CPTLayer.h:83
CPTLayer.h
cpt_weak_property
#define cpt_weak_property
A custom definition for automatic reference counting (ARC) weak properties that falls back to assign ...
Definition: CPTDefinitions.h:32
CPTAxis
An abstract axis class.
Definition: CPTAxis.h:198