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

SCIResamplingMode

enum SCIResamplingMode {}

Defines the ResamplingMode used by a RenderableSeries.

  • Do not use resampling when redrawing a series.

    Declaration

    Objective-C

    SCIResamplingMode_None = 0
  • Assumes Evenly-spaced data (TimeSeries). Resample by taking the min-max of oversampled data. This results in the most visually accurate resampling, with the most performant rendering.

    Declaration

    Objective-C

    SCIResamplingMode_MinMax = 1
  • Assumes Evenly-spaced data (TimeSeries). Resample by taking the median point of oversampled data.

    Declaration

    Objective-C

    SCIResamplingMode_Mid = 2
  • Assumes Evenly-spaced data (TimeSeries). Resample by taking the maximum point of oversampled data.

    Declaration

    Objective-C

    SCIResamplingMode_Max = 3
  • Assumes Evenly-spaced data (TimeSeries). Resample by taking the minimum point of oversampled data.

    Declaration

    Objective-C

    SCIResamplingMode_Min = 4
  • Assumes Evenly-spaced data (TimeSeries). Resample by taking the mininun or maximum point of oversampled data.

    Declaration

    Objective-C

    SCIResamplingMode_MinOrMax = 5
  • Auto-detect the most suitable resampling algorithm (Fastest, plus most accurate) for the type of data appended.

    Declaration

    Objective-C

    SCIResamplingMode_Auto = SCIResamplingMode_MinMax