Source for file PieMarks.php
Documentation is available at PieMarks.php
* <p>Title: PieMarks class</p>
* <p>Description: Customized pie series marks with additional properties.</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights Reserved.</p>
* <p>Company: Steema Software SL</p>
private $vertcenter = false;
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
return $this->vertcenter;
if($this->vertcenter != $value)
$this->vertcenter = $value;
if($this->legsize != $value)
|