com.steema.teechart.functions
Class DownSamplingMethod

java.lang.Object
  extended by com.steema.teechart.misc.Enum
      extended by com.steema.teechart.functions.DownSamplingMethod

public final class DownSamplingMethod
extends Enum

Title: DownSamplingMethod class

Description: Defines type of downsampling method.

Copyright (c) 2005-2013 by Steema Software SL. All Rights Reserved.

Company: Steema Software SL


Field Summary
static DownSamplingMethod AVERAGE
          Replace group of points with group average value.
static DownSamplingMethod MAX
          Replace group of points with group maximum value.
static DownSamplingMethod MIN
          Replace group of points with group minimum value.
static DownSamplingMethod MINMAX
          Replace group of points with two points : group minimum and maximum value.
static DownSamplingMethod MINMAXFIRSTLAST
          Replace group of points with two points : group minimum and maximum value.
static DownSamplingMethod MINMAXFIRSTLASTNULL
          Replace group of points with two points : group minimum and maximum value.
 
Method Summary
 
Methods inherited from class com.steema.teechart.misc.Enum
getValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MAX

public static final DownSamplingMethod MAX
Replace group of points with group maximum value.


MIN

public static final DownSamplingMethod MIN
Replace group of points with group minimum value.


MINMAX

public static final DownSamplingMethod MINMAX
Replace group of points with two points : group minimum and maximum value.


MINMAXFIRSTLAST

public static final DownSamplingMethod MINMAXFIRSTLAST
Replace group of points with two points : group minimum and maximum value. Draw From Last value of one group to the First value of the next. Only include the first null of the group in the calculation but without plotting it.


MINMAXFIRSTLASTNULL

public static final DownSamplingMethod MINMAXFIRSTLASTNULL
Replace group of points with two points : group minimum and maximum value. Draw From Last value of one group to the First value of the next. Only include the first null of the group in the calculation but without plotting it.


AVERAGE

public static final DownSamplingMethod AVERAGE
Replace group of points with group average value.