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.
static DownSamplingMethod DownSamplingMethod.MINMAXFIRSTLAST
          Replace group of points with two points : group minimum and maximum value.
static DownSamplingMethod DownSamplingMethod.MINMAXFIRSTLASTNULL
          Replace group of points with two points : group minimum and maximum value.
 

Methods in com.steema.teechart.functions that return DownSamplingMethod
 DownSamplingMethod DownSampling.getMethod()
           
 

Methods in com.steema.teechart.functions with parameters of type DownSamplingMethod
 int DownSampling.reduce(DownSamplingMethod algorithm, Series s, double tol, int lbound, int ubound, double[] rx, double[] ry, ColorList colors, Color color)
           
 void DownSampling.setMethod(DownSamplingMethod value)