com.steema.teechart.styles
Class CustomStack

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

public final class CustomStack
extends Enum

Title: CustomStack class

Description: Describes the possible values of CustomPoint.Stacked

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

Company: Steema Software SL

Example:


 lineSeries.setStacked( CustomStack.Overlap );
 


Field Summary
static CustomStack NONE
          Series will be drawn one behind the other using different "z" depths.
static CustomStack OVERLAP
          Series will be drawn one over the other using the same "z" depth.
static CustomStack STACK
          Draws each series on top of the previous one by summing the values.
static CustomStack STACK100
          Adjusts each individual series to a common 0..100 axis scale.
 
Method Summary
static CustomStack 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

NONE

public static final CustomStack NONE
Series will be drawn one behind the other using different "z" depths.


OVERLAP

public static final CustomStack OVERLAP
Series will be drawn one over the other using the same "z" depth.


STACK

public static final CustomStack STACK
Draws each series on top of the previous one by summing the values.


STACK100

public static final CustomStack STACK100
Adjusts each individual series to a common 0..100 axis scale.

Method Detail

fromInt

public static CustomStack fromInt(int value)