com.steema.teechart.styles
Class MultiBars

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

public final class MultiBars
extends Enum

Title: MultiBars class

Description: Describes the possible values of CustomBar.MultiBar.

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

Company: Steema Software SL

Example:


 bar1Series.setMultiBar(MultiBars.SIDEALL);
  or
 barSeries.setMultiBar(MultiBars.SELFSTACK);
 

See Also:
CustomBar.getMultiBar()

Field Summary
static MultiBars NONE
          Bar series are placed one behind the other.
static MultiBars SELFSTACK
          The points of each bar series are drawn one on top of the other.
static MultiBars SIDE
          Bar series points are placed one beside the other.
static MultiBars SIDEALL
          Bar series, that is, all series points, are drawn one beside the other.
static MultiBars STACKED
          Bar series are placed one on top of the other.
static MultiBars STACKED100
          Bar series are placed one on top of the other against a common axis scale 0..100.
 
Method Summary
static MultiBars fromValue(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 MultiBars NONE
Bar series are placed one behind the other.


SIDE

public static final MultiBars SIDE
Bar series points are placed one beside the other.


STACKED

public static final MultiBars STACKED
Bar series are placed one on top of the other.


STACKED100

public static final MultiBars STACKED100
Bar series are placed one on top of the other against a common axis scale 0..100.


SIDEALL

public static final MultiBars SIDEALL
Bar series, that is, all series points, are drawn one beside the other.


SELFSTACK

public static final MultiBars SELFSTACK
The points of each bar series are drawn one on top of the other.

Method Detail

fromValue

public static MultiBars fromValue(int value)