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

Source for file ChartDrawEvent.php

Documentation is available at ChartDrawEvent.php

  1. <?php
  2.  
  3.  /**
  4.  * ChartDrawEvent 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 events
  13.  * @link http://www.steema.com
  14.  */
  15.  
  16. class ChartDrawEvent extends ChartEvent {
  17.  
  18.     public static $PAINT_FIRST;
  19.     public static $PAINTING;
  20.     public static $PAINTED;
  21.     public static $PRINTING;
  22.     public static $PRINTED;
  23.     public static $PAINT_LAST;
  24.  
  25.     public static $CHART  1;
  26.     public static $AXES   2;
  27.     public static $SERIES 3;
  28.  
  29.     private $drawPart;
  30.  
  31.     /**
  32.      * Creates a new instance of ChartDrawEvent
  33.      */
  34.     public function ChartDrawEvent($source$id$drawPart{
  35.  
  36.         self::$PAINT_FIRST ChartEvent::$CHART_LAST 1;
  37.         self::$PAINTING    self::$PAINT_FIRST;
  38.         self::$PAINTED     self::$PAINT_FIRST 1;
  39.         self::$PRINTING    self::$PAINT_FIRST 2;
  40.         self::$PRINTED     self::$PAINT_FIRST 3;
  41.         self::$PAINT_LAST  self::$PAINT_FIRST 3;
  42.  
  43.         parent::__construct($source$id);
  44.  
  45.         $this->drawPart $drawPart;
  46.     }
  47.  
  48.     public function getDrawPart({
  49.         return $this->drawPart;
  50.     }
  51.  
  52. }
  53.  
  54. ?>

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