Enum ResamplingMode
Defines the ResamplingMode used by a RenderableSeries
Inherited Members
Namespace:
Assembly: .dll
Syntax
public enum ResamplingMode extends Enum<ResamplingMode>
Fields
| Name | Description |
|---|---|
| Auto | Auto-detect the most suitable resampling algorithm (Fastest, plus most accurate) for the type of data appended |
| Cluster2D | Groups close points in 2D space |
| 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 |
| None | Do not use resampling when redrawing a series |
Methods
| Name | Description |
|---|---|
| valueOf(String name) | |
| values() |