com.steema.teechart.styles
Class BarStyle

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

public final class BarStyle
extends Enum

Title: BarStyle class

Description: Describes the possible values of the CustomBar setBarStyle method

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

Company: Steema Software SL

Example:


 barSeries = new Bar(myChart.getChart());
 barSeries.setBarStyle(BarStyle.CONE);
 barSeries.getMarks().setVisible(true);
 barSeries.getMarks().setStyle(MarksStyle.VALUE);
 barSeries.fillSampleValues(5);
 barSeries.setConePercent(30);
 


Field Summary
static BarStyle ARROW
          Defines an arrow shape for each bar series point.
static BarStyle CONE
          Defines a cone shape for each bar series point.
static BarStyle CYLINDER
          Defines a cylinder shape for each bar series point.
static BarStyle ELLIPSE
          Defines an ellipse shape for each bar series point.
static BarStyle INVARROW
          Defines an inverted arrow shape for each bar series point.
static BarStyle INVCONE
          Defines an inverted cone shape for each bar series point.
static BarStyle INVPYRAMID
          Defines an inverted pyramid shape for each bar series point.
static BarStyle PYRAMID
          Defines a pyramid shape for each bar series point.
static BarStyle RECTANGLE
          Defines a rectangle shape for each bar series point.
static BarStyle RECTGRADIENT
          Defines a rectangle shape with a gradient for each bar series point.
 
Method Summary
static BarStyle 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

RECTANGLE

public static final BarStyle RECTANGLE
Defines a rectangle shape for each bar series point.


PYRAMID

public static final BarStyle PYRAMID
Defines a pyramid shape for each bar series point.


INVPYRAMID

public static final BarStyle INVPYRAMID
Defines an inverted pyramid shape for each bar series point.


CYLINDER

public static final BarStyle CYLINDER
Defines a cylinder shape for each bar series point.


ELLIPSE

public static final BarStyle ELLIPSE
Defines an ellipse shape for each bar series point.


ARROW

public static final BarStyle ARROW
Defines an arrow shape for each bar series point.


RECTGRADIENT

public static final BarStyle RECTGRADIENT
Defines a rectangle shape with a gradient for each bar series point.


CONE

public static final BarStyle CONE
Defines a cone shape for each bar series point.


INVARROW

public static final BarStyle INVARROW
Defines an inverted arrow shape for each bar series point.


INVCONE

public static final BarStyle INVCONE
Defines an inverted cone shape for each bar series point.

Method Detail

fromValue

public static BarStyle fromValue(int value)