iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
-
Creates a new instance of
SCIRangeBase.Declaration
Objective-C
- (nonnull instancetype)initWithRange:(nonnull SCIRangeBase *)range andMath:(nonnull id<ISCIMath>)math;Swift
init(range: SCIRangeBase, andMath math: any ISCIMath)Parameters
rangeThe
SCIRangeBaseinstance to initialize new range with.mathThe generic `ISCIMath’ helper.
-
Creates a new instance of
SCIRangeBase.Declaration
Objective-C
- (nonnull instancetype)initWithMin:(nonnull id<ISCIComparable>)min max:(nonnull id<ISCIComparable>)max andMath:(nonnull id<ISCIMath>)math;Swift
init(min: any ISCIComparable, max: any ISCIComparable, andMath math: any ISCIMath)Parameters
minThe min value to initialize range with.
maxThe max value to initialize range with.
mathThe generic `ISCIMath’ helper.
View on GitHub