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

SCIClipMode

enum SCIClipMode : NSUInteger {}

Defines constants for behavior of the SCIZoomPanModifier.

Possible values:

  • None - Means you can pan right off the edge of the data into uncharted space.
  • StretchAtExtents - Causes a zooming (stretch) action when you reach the edge of the data.
  • ClipAtMin - Forces the panning operation to stop suddenly at the minimum of the data, but expand at the maximum.
  • ClipAtMax - Forces the panning operation to stop suddenly at the maximum of the data, but expand at the minimum.
  • ClipAtExtents - Forces the panning operation to stop suddenly at the extents of the data.
  • Means you can pan right off the edge of the data into uncharted space.

    Declaration

    Objective-C

    SCIClipMode_None

    Swift

    case none = 0
  • Causes a zooming (stretch) action when you reach the edge of the data.

    Declaration

    Objective-C

    SCIClipMode_StretchAtExtents

    Swift

    case stretchAtExtents = 1
  • Forces the panning operation to stop suddenly at the minimum of the data, but expand at the maximum.

    Declaration

    Objective-C

    SCIClipMode_ClipAtMin

    Swift

    case clipAtMin = 2
  • Forces the panning operation to stop suddenly at the maximum of the data, but expand at the minimum.

    Declaration

    Objective-C

    SCIClipMode_ClipAtMax

    Swift

    case clipAtMax = 3
  • Forces the panning operation to stop suddenly at the extents of the data.

    Declaration

    Objective-C

    SCIClipMode_ClipAtExtents

    Swift

    case clipAtExtents = 4