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

SCIVisibleRangeAnimatorListener

@interface SCIVisibleRangeAnimatorListener : NSObject <ISCIAnimatorListener>

Defines the ISCIAnimatorListener which is used in SCIVisibleRangeAnimator.

  • The ISCIAxisCore to animate its visible range.

    Declaration

    Objective-C

    @property (nonatomic, weak) id<ISCIAxisCore> _Nullable axis;

    Swift

    weak var axis: ISCIAxisCore? { get set }
  • The Min value to start animation from.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double fromMin;

    Swift

    var fromMin: Double { get }
  • The Max value to start animation from.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double fromMax;

    Swift

    var fromMax: Double { get }
  • The Min value to animate to.

    Declaration

    Objective-C

    @property (nonatomic) double toMin;

    Swift

    var toMin: Double { get set }
  • The Max value to animate to.

    Declaration

    Objective-C

    @property (nonatomic) double toMax;

    Swift

    var toMax: Double { get set }