Source for file Footer.php
Documentation is available at Footer.php
* Description:Text displayed below Chart
* @copyright (c) 1995-2010 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
TChart::$controlName .= 'Footer_';
$tmpColor = new Color(255, 0, 0);// RED
$this->getFont()->getBrush()->setDefaultColor($tmpColor);
|