iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIIntegerRange

@interface SCIIntegerRange : SCINumberRange

Defines a range of type int.

  • Initializes a new instance of SCIIntegerRange.

    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 SCIIntegerRange.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithRange:(nonnull SCIIntegerRange *)range;

    Swift

    init(range: SCIIntegerRange)

    Parameters

    range

    The SCIIntegerRange instance to initialize new range with.