Source for file ToolSeries.php
Documentation is available at ToolSeries.php
* Description: Base abstract class for Tool components with a Series method
* @copyright (c) 1995-2008 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);
parent::Tool($s->getChart());
* Returns the associated Top or Bottom Chart Horizontal Axis.
return ($this->iSeries == null) ? $this->chart->getAxes()->getBottom() : $this->iSeries->getHorizAxis();
* Returns the associated Left or Right Chart Vertical Axis.
return ($this->iSeries == null) ? $this->chart->getAxes()->getLeft() : $this->iSeries->getVertAxis();
* The Series with which Tools are associated.<br>
* Sets the Series with which Tools are associated.<br>
|