Source for file LegendStyle.php
Documentation is available at LegendStyle.php
* Description: Describes the possible values of Legend::$LegendStyle
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
* Legend draws Series Titles if there's more than one Series in the chart.
* Legend draws the Series Titles even if there's only one Series in the
public static $SERIES = 1;
* Legend draws the first Active Series' values.
public static $VALUES = 2;
* Legend draws the Last Value of each Active Series (similar to Series).
public static $LASTVALUES = 3;
* Legend draws a number of the Palette entries defined by Legend.MaxNumRows.
public static $PALETTE = 4;
return self::$LASTVALUES;
|