Source for file CustomStack.php
Documentation is available at CustomStack.php
* <p>Title: CustomStack class</p>
* <p>Description: Describes the possible values of CustomPoint.Stacked</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights
* <p>Company: Steema Software SL</p>
* <pre><font face="Courier" size="4">
* $lineSeries->setStacked( CustomStack::$OVERLAP );
* Series will be drawn one behind the other using different "z" depths.
* Series will be drawn one over the other using the same "z" depth.
public static $OVERLAP = 1;
* Draws each series on top of the previous one by summing the values.
public static $STACK = 2;
* Adjusts each individual series to a common 0..100 axis scale.
public static $STACK100 = 3;
|