com.steema.teechart.styles
Class TreatNullsStyle

java.lang.Object
  extended by com.steema.teechart.misc.Enum
      extended by com.steema.teechart.styles.TreatNullsStyle

public final class TreatNullsStyle
extends Enum

Title: TreatNullsStyle class

Description: Defines how to treat null points.

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

Company: Steema Software SL

See Also:
com.steema.teechart.styles.Series#getTreatNulls

Field Summary
static TreatNullsStyle DONOTPAINT
          Null points are not painted, but they are still used in other calculations.
static TreatNullsStyle IGNORE
          Null points are completely ignored.
static TreatNullsStyle SKIP
          Null points are skipped in drawing and calculations.
 
Method Summary
static TreatNullsStyle fromInt(int value)
           
 
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

DONOTPAINT

public static final TreatNullsStyle DONOTPAINT
Null points are not painted, but they are still used in other calculations.


SKIP

public static final TreatNullsStyle SKIP
Null points are skipped in drawing and calculations.


IGNORE

public static final TreatNullsStyle IGNORE
Null points are completely ignored.

Method Detail

fromInt

public static TreatNullsStyle fromInt(int value)