TeeChartPHP
[ class tree: TeeChartPHP ] [ index: TeeChartPHP ] [ all elements ]

Source for file MarksItem.php

Documentation is available at MarksItem.php

  1. <?php
  2.  
  3. /**
  4.  * MarksItem class
  5.  *
  6.  * Description:
  7.  *
  8.  * @author
  9.  * @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
  10.  * @version 1.0
  11.  * @package TeeChartPHP
  12.  * @subpackage styles
  13.  * @link http://www.steema.com
  14.  */
  15.  
  16. class MarksItem extends TextShape
  17. {
  18.    public $MARKCOLOR = null;
  19.  
  20.    public function MarksItem($c null)
  21.    {
  22.       $this->MARKCOLOR = new Color(255255200);//LIGHT_YELLOW
  23.       parent::TextShape($c);
  24.  
  25.       $this->setColor($this->MARKCOLOR);
  26.       unset($this->MARKCOLOR);
  27.    }
  28. }
  29. ?>

Documentation generated on Wed, 16 Jun 2010 12:06:58 +0200 by phpDocumentor 1.4.1