ResamplingMode Enumeration
Defines the ResamplingMode used by a RenderableSeries
Syntax
public enum ResamplingMode : System.Enum 
Members
MemberDescription
Auto Auto-detect the most suitable resampling algorithm (Fastest, plus most accurate) for the type of data appended
Max Assumes Evenly-spaced data (TimeSeries). Resample by taking the maximum point of oversampled data
Mid Assumes Evenly-spaced data (TimeSeries). Resample by taking the median point of oversampled data
Min Assumes Evenly-spaced data (TimeSeries). Resample by taking the minimum point of oversampled data
MinMax 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
MinMaxWithUnevenSpacing Does 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
MinOrMax EXPERIMENTAL! Assumes Evenly-spaced data (TimeSeries). Resample by taking the Min, or the Max point of oversampled data. Outputs Min and Max when points in the resampling bucket span zero
None Do not use resampling when redrawing a series
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SciChart.Data.Numerics.ResamplingMode

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also