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

Source for file CandleStyle.php

Documentation is available at CandleStyle.php

  1. <?php
  2.  
  3. /**
  4.  * CandleStyle Class
  5.  *
  6.  * Description: Describes the possible values of Candle.Style
  7.  *
  8.  * @author
  9.  * @copyright 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. {
  17.    /**
  18.    * Candle points represented by vertical rectangles with Open and Close
  19.    * vertical tick marks.
  20.    */
  21.    public static $CANDLESTICK 0;
  22.    /**
  23.    * Candle points represented by vertical lines with Open and Close
  24.    * horizontal tick marks.
  25.    */
  26.    public static $CANDLEBAR 1;
  27.    /**
  28.    * Candle points represented by vertical rectangles without Open and Close
  29.    * vertical tick marks.
  30.    */
  31.    public static $OPENCLOSE 2;
  32.    /**
  33.    * Candle points represented by a line.
  34.    */
  35.    public static $LINE 3;
  36.  
  37.    function CandleStyle()
  38.    {
  39.    }
  40. }
  41. ?>

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