iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIIndexRange
@interface SCIIndexRange : SCINumberRange
Defines a range used to specify array indices to another series.
-
Initializes a new instance of
SCIIndexRange.Declaration
Objective-C
- (nonnull instancetype)initWithMin:(int)min max:(int)max;Swift
init(min: Int32, max: Int32)Parameters
minThe min value to initialize range with.
maxThe max value to initialize range with.
-
Initializes a new instance of
SCIIndexRange.Declaration
Objective-C
- (nonnull instancetype)initWithRange:(nonnull SCIIndexRange *)range;Swift
init(range: SCIIndexRange)Parameters
rangeThe
SCIIndexRangeinstance to initialize new range with.
View on GitHub