com.scichart.data.numerics Package : ResamplingMode Enumeration
ResamplingMode Enumeration
Defines the ResamplingMode used by a RenderableSeries
Members
MemberDescription
AutoAuto-detect the most suitable resampling algorithm (Fastest, plus most accurate) for the type of data appended
Cluster2DGroups close points in 2D space
MaxAssumes Evenly-spaced data (TimeSeries). Resample by taking the maximum point of oversampled data
MidAssumes Evenly-spaced data (TimeSeries). Resample by taking the median point of oversampled data
MinAssumes Evenly-spaced data (TimeSeries). Resample by taking the minimum point of oversampled data
MinMaxAssumes 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
MinMaxWithUnevenSpacingDoes not assume 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
NoneDo not use resampling when redrawing a series
Inheritance Hierarchy

java.lang.Object
   java.lang.Enum
      com.scichart.data.numerics.ResamplingMode

See Also