Source for file MultiBars.php
Documentation is available at MultiBars.php
* <p>Title: MultiBars class</p>
* <p>Description: Describes the possible values of CustomBar.MultiBar.</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights Reserved.</p>
* <p>Company: Steema Software SL</p>
* <pre><font face="Courier" size="4">
* $bar1Series->setMultiBar(MultiBars::$SIDEALL);
* $barSeries->setMultiBar(MultiBars::$SELFSTACK);
* @see com.steema.teechart.styles.CustomBar#getMultiBar
* Bar series are placed one behind the other.
* Bar series points are placed one beside the other.
* Bar series are placed one on top of the other.
public static $STACKED = 2;
* Bar series are placed one on top of the other against a common axis
public static $STACKED100 = 3;
* Bar series, that is, all series points, are drawn one beside the other.
public static $SIDEALL = 4;
* The points of each bar series are drawn one on top of the other.
public static $SELFSTACK = 5;
|