Source for file ChartDrawEvent.php
Documentation is available at ChartDrawEvent.php
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
public static $PAINT_FIRST;
public static $PAINT_LAST;
public static $CHART = 1;
public static $SERIES = 3;
* Creates a new instance of ChartDrawEvent
self::$PAINT_FIRST = ChartEvent::$CHART_LAST + 1;
self::$PAINTING = self::$PAINT_FIRST;
self::$PAINTED = self::$PAINT_FIRST + 1;
self::$PRINTING = self::$PAINT_FIRST + 2;
self::$PRINTED = self::$PAINT_FIRST + 3;
self::$PAINT_LAST = self::$PAINT_FIRST + 3;
parent::__construct($source, $id);
$this->drawPart = $drawPart;
|