Uses of Class
com.steema.teechart.functions.DownSamplingMethod

Packages that use DownSamplingMethod
com.steema.teechart.functions   
 

Uses of DownSamplingMethod in com.steema.teechart.functions
 

Fields in com.steema.teechart.functions declared as DownSamplingMethod
static DownSamplingMethod DownSamplingMethod.AVERAGE
          Replace group of points with group average value.
static DownSamplingMethod DownSamplingMethod.MAX
          Replace group of points with group maximum value.
static DownSamplingMethod DownSamplingMethod.MIN
          Replace group of points with group minimum value.
static DownSamplingMethod DownSamplingMethod.MINMAX
          Replace group of points with two points : group minimum and maximum value.
 

Methods in com.steema.teechart.functions that return DownSamplingMethod
 DownSamplingMethod DownSampling.getMethod()
          Defines reduction/downsampling method.
 

Methods in com.steema.teechart.functions with parameters of type DownSamplingMethod
 com.steema.teechart.functions.DownSampling.ReduceResults DownSampling.reduce(DownSamplingMethod algorithm, double tol, int lbound, int ubound, double[] x, double[] y)
          Reduce the number of points in double arrays
 void DownSampling.setMethod(DownSamplingMethod value)
          Defines reduction/downsampling method.