Source for file LegendTextStyle.php
Documentation is available at LegendTextStyle.php
* Description: Describes the possible values of the Legend.TextStyle
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
* Legend Text is defined as the series point labels.
public static $PLAIN = 0;
* Legend Text is defined as the series values on the left of the series
public static $LEFTVALUE = 1;
* Legend Text is defined as the series values on the right of the series
public static $RIGHTVALUE = 2;
* Legend Text is defined as the series values as a percentage of the total
* of series values on the left of the series point labels.
public static $LEFTPERCENT = 3;
* Legend Text is defined as the series values as a percentage of the total
* of series values on the right of the series point labels.
public static $RIGHTPERCENT = 4;
* Legend Text is defined as the xvalues of the series.
public static $XVALUE = 5;
* Legend Text is defined as the series value.
public static $VALUE = 6;
* Legend Text is defined as the series values as a percentage of the total
public static $PERCENT = 7;
* Legend Text is defined as xvalues of the series and the series values.
public static $XANDVALUE = 8;
* Legend Text is defined as xvalues of the series and the series values as
* a percentage of the total of series values.
public static $XANDPERCENT = 9;
return self::$RIGHTVALUE;
return self::$LEFTPERCENT;
return self::$RIGHTPERCENT;
return self::$XANDPERCENT;
|