Source for file AnnotationPosition.php
Documentation is available at AnnotationPosition.php
* AnnotationPosition class
* Description: Describes the possible values of the Annotation.Position
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
* Draws the Annotation Tool in the top left of the Chart Panel.
public static $LEFTTOP = 0;
* Draws the Annotation Tool in the bottom left of the Chart Panel.
public static $LEFTBOTTOM = 1;
* Draws the Annotation Tool in the top right of the Chart Panel.
public static $RIGHTTOP = 2;
* Draws the Annotation Tool in the bottom right of the Chart Panel.
public static $RIGHTBOTTOM = 3;
|