|
Core Plot (macOS)
Cocoa plotting framework for macOS, iOS, and tvOS
|
Go to the documentation of this file.
33 @property (nonatomic, readonly, strong, nonnull)
NSNumber *
end;
57 +(nonnull instancetype)plotRangeWithLocation:(nonnull
NSNumber *)loc length:(nonnull
NSNumber *)len;
58 +(nonnull instancetype)plotRangeWithLocationDecimal:(
NSDecimal)loc lengthDecimal:(
NSDecimal)len;
63 -(nonnull instancetype)initWithLocation:(nonnull
NSNumber *)loc length:(nonnull
NSNumber *)len NS_DESIGNATED_INITIALIZER;
64 -(nonnull instancetype)initWithLocationDecimal:(
NSDecimal)loc lengthDecimal:(
NSDecimal)len;
65 -(nullable instancetype)initWithCoder:(nonnull
NSCoder *)decoder NS_DESIGNATED_INITIALIZER;
71 -(
BOOL)containsDouble:(
double)number;
NSNumber * end
The ending value of the range, equivalent to location + length.
Definition: CPTPlotRange.h:33
@ CPTPlotRangeComparisonResultNumberBelowRange
Number is below the range.
Definition: CPTPlotRange.h:11
CPTSign lengthSign
The direction (positive or negative) if the length of the range is infinite.
Definition: CPTPlotRange.h:52
NSArray< CPTPlotRange * > CPTPlotRangeArray
An array of plot ranges.
Definition: CPTPlotRange.h:20
@ CPTPlotRangeComparisonResultNumberUndefined
Number is undefined (e.g., NaN).
Definition: CPTPlotRange.h:14
NSDecimal midPointDecimal
The middle value of the range.
Definition: CPTPlotRange.h:45
Defines an immutable range of plot data.
Definition: CPTPlotRange.h:27
double endDouble
The ending value of the range as a double, equivalent to locationDouble + lengthDouble.
Definition: CPTPlotRange.h:39
NSDecimal locationDecimal
The starting value of the range.
Definition: CPTPlotRange.h:34
NSDecimal maxLimitDecimal
The maximum extreme value of the range.
Definition: CPTPlotRange.h:46
NSNumber * midPoint
The middle value of the range.
Definition: CPTPlotRange.h:42
@ CPTPlotRangeComparisonResultNumberAboveRange
Number is above the range.
Definition: CPTPlotRange.h:13
CPTPlotRangeComparisonResult
Enumeration of possible results of a plot range comparison.
Definition: CPTPlotRange.h:10
CPTSign
Enumeration of label positioning offset directions.
Definition: CPTDefinitions.h:185
double midPointDouble
The middle value of the range as a double.
Definition: CPTPlotRange.h:48
NSNumber * length
The length of the range.
Definition: CPTPlotRange.h:32
NSNumber * minLimit
The minimum extreme value of the range.
Definition: CPTPlotRange.h:41
double locationDouble
The starting value of the range as a double.
Definition: CPTPlotRange.h:37
double minLimitDouble
The minimum extreme value of the range as a double.
Definition: CPTPlotRange.h:47
NSMutableArray< CPTPlotRange * > CPTMutablePlotRangeArray
A mutable array of plot ranges.
Definition: CPTPlotRange.h:25
NSNumber * maxLimit
The maximum extreme value of the range.
Definition: CPTPlotRange.h:43
NSNumber * location
The starting value of the range.
Definition: CPTPlotRange.h:31
NSDecimal minLimitDecimal
The minimum extreme value of the range.
Definition: CPTPlotRange.h:44
BOOL isInfinite
YES if the length of the range is infinite.
Definition: CPTPlotRange.h:51
@ CPTPlotRangeComparisonResultNumberInRange
Number is in the range.
Definition: CPTPlotRange.h:12
double maxLimitDouble
The maximum extreme value of the range as a double.
Definition: CPTPlotRange.h:49
NSDecimal endDecimal
The ending value of the range, equivalent to locationDecimal + lengthDecimal.
Definition: CPTPlotRange.h:36
double lengthDouble
The length of the range as a double.
Definition: CPTPlotRange.h:38
NSDecimal lengthDecimal
The length of the range.
Definition: CPTPlotRange.h:35