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

    min

    The min value to initialize range with.

    max

    The 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

    range

    The SCIIndexRange instance to initialize new range with.