Source for file SeriesMarksPosition.php
Documentation is available at SeriesMarksPosition.php
* <p>Title: SeriesMarksPosition class</p>
* <p>Description: Series Mark Position</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights
* <p>Company: Steema Software SL</p>
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
* Returns the bounding rectangle of the indexed Mark.
public function assign($source)
$this->arrowFrom->setX($source->arrowFrom->getX());
$this->arrowFrom->setY($source->arrowFrom->getY());
$this->arrowTo->setX($source->arrowTo->getX());
$this->arrowTo->setY($source->arrowTo->getY());
$this->leftTop->setX($source->leftTop->getX());
$this->leftTop->setY($source->leftTop->getY());
$this->height = $source->height;
$this->width = $source->width;
|