Source for file NextAxisLabelValue.php
Documentation is available at NextAxisLabelValue.php
* NextAxisLabelValue class
* @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);
$this->labelValue = $labelValue;
* Specifies the desired Axis Label value.
* @param labelValue double
$this->labelValue = $labelValue;
* Returns the desired Axis Label value.
return $this->labelValue;
* The Stop parameter is false by default, meaning that if it's not<br>
* set to true the first time this event gets called, TeeChart will<br>
* draw the default Axis Labels.<br><br>
* The Stop parameter is false by default, meaning that if it's not<br>
* set to true the first time this event gets called, TeeChart will<br>
* draw the default Axis Labels.<br><br>
|