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

Source for file ShapeStyle.php

Documentation is available at ShapeStyle.php

  1. <?php
  2.  
  3. /**
  4.  * ShapeStyle class
  5.  *
  6.  * Description: Describes the possible values of the Shape.Style method
  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 ShapeStyle
  17. {
  18.    /**
  19.    * The shape is a rectangle.
  20.    */
  21.    public static $RECTANGLE 0;
  22.    /**
  23.    * The shape is a circle.
  24.    */
  25.    public static $CIRCLE 1;
  26.    /**
  27.    * The shape is a vertical line.
  28.    */
  29.    public static $VERTLINE 2;
  30.    /**
  31.    * The shape is a horizontal line.
  32.    */
  33.    public static $HORIZLINE 3;
  34.    /**
  35.    * The shape is a triangle.
  36.    */
  37.    public static $TRIANGLE 4;
  38.    /**
  39.    * The shape is an inverted triangle.
  40.    */
  41.    public static $INVERTTRIANGLE 5;
  42.    /**
  43.    * The shape is a line.
  44.    */
  45.    public static $LINE 6;
  46.    /**
  47.    * The shape is a diamond.
  48.    */
  49.    public static $DIAMOND 7;
  50.    /**
  51.    * The shape is a cube.
  52.    */
  53.    public static $CUBE 8;
  54.    /**
  55.    * The shape is a cross.
  56.    */
  57.    public static $CROSS 9;
  58.    /**
  59.    * The shape is a diagonal cross.
  60.    */
  61.    public static $DIAGCROSS 10;
  62.    /**
  63.    * The shape is a star.
  64.    */
  65.    public static $STAR 11;
  66.    /**
  67.    * The shape is a pyramid.
  68.    */
  69.    public static $PYRAMID 12;
  70.    /**
  71.    * The shape is an inverted pyramid.
  72.    */
  73.    public static $INVERTPYRAMID 13;
  74.  
  75.  
  76.    public function ShapeStyle({}
  77. }
  78.  
  79. ?>

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