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
  • Causes a zooming (stretch) action when you reach the edge of the data.

    Declaration

    Objective-C

    SCIClipMode_StretchAtExtents
  • Forces the panning operation to stop suddenly at the minimum of the data, but expand at the maximum.

    Declaration

    Objective-C

    SCIClipMode_ClipAtMin
  • Forces the panning operation to stop suddenly at the maximum of the data, but expand at the minimum.

    Declaration

    Objective-C

    SCIClipMode_ClipAtMax
  • Forces the panning operation to stop suddenly at the extents of the data.

    Declaration

    Objective-C

    SCIClipMode_ClipAtExtents