Source for file MarksCallout.php
Documentation is available at MarksCallout.php
* <p>Title: MarksCallout class</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. </p>
* <p>All Rights Reserved.</p>
* <p>Company: Steema Software SL</p>
private $defaultLength= 0;
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
$this->defaultLength = 8;
return parent::readResolve();
* Length between series data points and Marks.
* Specifies the Length between series data points and Marks.
$this->defaultLength = $value;
|