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

SCIEasingMode

enum SCIEasingMode : NSUInteger {}

Defines the modes in which classes deriving from SCIEasingFunctionBase will perform their easing.

  • The easing is performed at the start of the animation.

    Declaration

    Objective-C

    SCIEasingMode_EaseIn

    Swift

    case easeIn = 0
  • The easing is performed at the end of the animation.

    Declaration

    Objective-C

    SCIEasingMode_EaseOut

    Swift

    case easeOut = 1
  • The easing is performed both at the start and the end of the animation.

    Declaration

    Objective-C

    SCIEasingMode_EaseInOut

    Swift

    case easeInOut = 2