|
|
NSNumber * | orthogonalPosition |
| The data coordinate value where the axis crosses the orthogonal axis. If the axisConstraints is non-nil, the constraints take priority and this property is ignored. More...
|
|
CPTConstraints * | axisConstraints |
| The constraints used when positioning relative to the plot area. If nil (the default), the axis is fixed relative to the plot space coordinates, crossing the orthogonal axis at orthogonalPosition and moves only whenever the plot space ranges change. More...
|
|
CPTLineStyle * | axisLineStyle |
| The line style for the axis line. If nil, the line is not drawn. More...
|
|
CPTCoordinate | coordinate |
| The axis coordinate. More...
|
|
NSNumber * | labelingOrigin |
| The origin used for axis labels. The default value is 0 . It is only used when the axis labeling policy is CPTAxisLabelingPolicyFixedInterval. The origin is a reference point used to being labeling. Labels are added at the origin, as well as at fixed intervals above and below the origin. More...
|
|
CPTSign | tickDirection |
| The tick direction. The direction is given as the sign that ticks extend along the axis (e.g., positive or negative). More...
|
|
CPTPlotRange * | visibleRange |
| The plot range over which the axis and ticks are visible. Use this to restrict an axis and its grid lines to less than the full plot area width. Use the visibleAxisRange to specify a separate range for the axis line, if needed. Set to nil for no restriction. More...
|
|
CPTPlotRange * | visibleAxisRange |
| The plot range over which the axis itself is visible. Use this to restrict an axis line to less than the full plot area width. This range is independent of the visibleRange and overrides it for the axis line and line cap. Set to nil to use the visibleRange instead. More...
|
|
CPTLineCap * | axisLineCapMin |
| The line cap for the end of the axis line with the minimum value. More...
|
|
CPTLineCap * | axisLineCapMax |
| The line cap for the end of the axis line with the maximum value. More...
|
|
NSNumber * | majorIntervalLength |
| The distance between major tick marks expressed in data coordinates. More...
|
|
CGFloat | majorTickLength |
| The length of the major tick marks. More...
|
|
CPTLineStyle * | majorTickLineStyle |
| The line style for the major tick marks. If nil, the major ticks are not drawn. More...
|
|
CPTNumberSet * | majorTickLocations |
| A set of axis coordinates for all major tick marks. More...
|
|
NSUInteger | preferredNumberOfMajorTicks |
| The number of ticks that should be targeted when auto-generating positions. This property only applies when the CPTAxisLabelingPolicyAutomatic or CPTAxisLabelingPolicyEqualDivisions policies are in use. If zero (0 ) (the default), Core Plot will choose a reasonable number of ticks. More...
|
|
NSUInteger | minorTicksPerInterval |
| The number of minor tick marks drawn in each major tick interval. More...
|
|
CGFloat | minorTickLength |
| The length of the minor tick marks. More...
|
|
CPTLineStyle * | minorTickLineStyle |
| The line style for the minor tick marks. If nil, the minor ticks are not drawn. More...
|
|
CPTNumberSet * | minorTickLocations |
| A set of axis coordinates for all minor tick marks. More...
|
|
CPTPlotSpace * | plotSpace |
| The plot space for the axis. More...
|
|
BOOL | separateLayers |
| Use separate layers for drawing grid lines? More...
|
|
CPTPlotArea * | plotArea |
| The plot area that the axis belongs to. More...
|
|
CPTGridLines * | minorGridLines |
| The layer that draws the minor grid lines. More...
|
|
CPTGridLines * | majorGridLines |
| The layer that draws the major grid lines. More...
|
|
CPTAxisSet * | axisSet |
| The axis set that the axis belongs to. More...
|
|
CPTTextStyle * | titleTextStyle |
| The text style used to draw the axis title text. More...
|
|
CPTAxisTitle * | axisTitle |
| The axis title. If nil, no title is drawn. More...
|
|
CGFloat | titleOffset |
| The offset distance between the axis title and the axis line. More...
|
|
NSString * | title |
| A convenience property for setting the text title of the axis. More...
|
|
NSAttributedString * | attributedTitle |
| A convenience property for setting the styled text title of the axis. More...
|
|
CGFloat | titleRotation |
| The rotation angle of the axis title in radians. If NaN (the default), the title will be parallel to the axis. More...
|
|
CPTSign | titleDirection |
| The offset direction for the axis title. The direction is given as the sign that ticks extend along the axis (e.g., positive or negative). If the title direction is CPTSignNone (the default), the title is offset in the direction indicated by the tickDirection. More...
|
|
NSNumber * | titleLocation |
| The position along the axis where the axis title should be centered. If NaN (the default), the defaultTitleLocation will be used. More...
|
|
NSNumber * | defaultTitleLocation |
| The position along the axis where the axis title should be centered if titleLocation is NaN . More...
|
|
CPTAxisLabelingPolicy | labelingPolicy |
| The axis labeling policy. More...
|
|
CGFloat | labelOffset |
| The offset distance between the tick marks and labels. More...
|
|
CGFloat | minorTickLabelOffset |
| The offset distance between the minor tick marks and labels. More...
|
|
CGFloat | labelRotation |
| The rotation of the axis labels in radians. Set this property to π/2 to have labels read up the screen, for example. More...
|
|
CGFloat | minorTickLabelRotation |
| The rotation of the axis minor tick labels in radians. Set this property to π/2 to have labels read up the screen, for example. More...
|
|
CPTAlignment | labelAlignment |
| The alignment of the axis label with respect to the tick mark. More...
|
|
CPTAlignment | minorTickLabelAlignment |
| The alignment of the axis label with respect to the tick mark. More...
|
|
CPTTextStyle * | labelTextStyle |
| The text style used to draw the label text. More...
|
|
CPTTextStyle * | minorTickLabelTextStyle |
| The text style used to draw the label text of minor tick labels. More...
|
|
CPTSign | tickLabelDirection |
| The offset direction for major tick labels. The direction is given as the sign that ticks extend along the axis (e.g., positive or negative). If the label direction is CPTSignNone (the default), the labels are offset in the direction indicated by the tickDirection. More...
|
|
CPTSign | minorTickLabelDirection |
| The offset direction for minor tick labels. The direction is given as the sign that ticks extend along the axis (e.g., positive or negative). If the label direction is CPTSignNone (the default), the labels are offset in the direction indicated by the tickDirection. More...
|
|
NSFormatter * | labelFormatter |
| The number formatter used to format the label text. If you need a non-numerical label, such as a date, you can use a formatter than turns the numerical plot coordinate into a string (e.g., “Jan 10, 2010”). The CPTCalendarFormatter and CPTTimeFormatter classes are useful for this purpose. More...
|
|
NSFormatter * | minorTickLabelFormatter |
| The number formatter used to format the label text of minor ticks. If you need a non-numerical label, such as a date, you can use a formatter than turns the numerical plot coordinate into a string (e.g., “Jan 10, 2010”). The CPTCalendarFormatter and CPTTimeFormatter classes are useful for this purpose. More...
|
|
CPTAxisLabelSet * | axisLabels |
| The set of axis labels. More...
|
|
CPTAxisLabelSet * | minorTickAxisLabels |
| The set of minor tick axis labels. More...
|
|
BOOL | needsRelabel |
| If YES, the axis needs to be relabeled before the layer content is drawn. More...
|
|
CPTPlotRangeArray * | labelExclusionRanges |
| An array of CPTPlotRange objects. Any tick marks and labels falling inside any of the ranges in the array will not be drawn. More...
|
|
CPTShadow * | labelShadow |
| The shadow applied to each axis label. More...
|
|
CPTShadow * | minorTickLabelShadow |
| The shadow applied to each minor tick axis label. More...
|
|
CPTLineStyle * | majorGridLineStyle |
| The line style for the major grid lines. If nil, the major grid lines are not drawn. More...
|
|
CPTLineStyle * | minorGridLineStyle |
| The line style for the minor grid lines. If nil, the minor grid lines are not drawn. More...
|
|
CPTPlotRange * | gridLinesRange |
| The plot range over which the grid lines are visible. Note that this range applies to the orthogonal coordinate, not the axis coordinate itself. Set to nil for no restriction. More...
|
|
CPTFillArray * | alternatingBandFills |
| An array of two or more fills to be drawn between successive major tick marks. More...
|
|
NSNumber * | alternatingBandAnchor |
| The starting location of the first band fill. More...
|
|
CPTLimitBandArray * | backgroundLimitBands |
| An array of CPTLimitBand objects. More...
|
|
CPTGraph * | graph |
| The graph for the layer. More...
|
|
CGFloat | paddingLeft |
| Amount to inset the left side of each sublayer. More...
|
|
CGFloat | paddingTop |
| Amount to inset the top of each sublayer. More...
|
|
CGFloat | paddingRight |
| Amount to inset the right side of each sublayer. More...
|
|
CGFloat | paddingBottom |
| Amount to inset the bottom of each sublayer. More...
|
|
id< NSCopying, NSCoding, NSObject > | identifier |
| An object used to identify the layer in collections. More...
|
|
CGFloat | contentsScale |
| The scale factor applied to the layer. More...
|
|
BOOL | useFastRendering |
| If YES, subclasses should optimize their drawing for speed over precision. More...
|
|
CPTShadow * | shadow |
| The shadow drawn under the layer content. If nil (the default), no shadow is drawn. More...
|
|
CGSize | shadowMargin |
| The maximum margin size needed to fully enclose the layer shadow. More...
|
|
BOOL | masksToBorder |
| If YES, a sublayer mask is applied to clip sublayer content to the inside of the border. More...
|
|
CGPathRef | outerBorderPath |
| A drawing path that encompasses the outer boundary of the layer border. More...
|
|
CGPathRef | innerBorderPath |
| A drawing path that encompasses the inner boundary of the layer border. More...
|
|
CGPathRef | maskingPath |
| A drawing path that encompasses the layer content including any borders. Set to NULL when no masking is desired. More...
|
|
CGPathRef | sublayerMaskingPath |
| A drawing path that encompasses the layer content excluding any borders. Set to NULL when no masking is desired. More...
|
|
CPTSublayerSet * | sublayersExcludedFromAutomaticLayout |
| A set of sublayers that should be excluded from the automatic sublayer layout. More...
|
|
CGPoint | anchorPoint |
|
CGRect | bounds |
|
CGFloat | contentsScale |
|
CGFloat | cornerRadius |
|
id | delegate |
|
CGRect | frame |
|
BOOL | masksToBounds |
|
BOOL | needsDisplayOnBoundsChange |
|
BOOL | opacity |
|
BOOL | opaque |
|
BOOL | autoreverses |
|
CFTimeInterval | beginTime |
|
CFTimeInterval | duration |
|
NSString * | fillMode |
|
float | repeatCount |
|
id | repeatDuration |
|
float | speed |
|
CFTimeInterval | timeOffset |
|
A 2-dimensional cartesian (X-Y) axis class.