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

Source for file MultiBars.php

Documentation is available at MultiBars.php

  1. <?php
  2.  
  3. /**
  4. *
  5. * <p>Title: MultiBars class</p>
  6. *
  7. * <p>Description: Describes the possible values of CustomBar.MultiBar.</p>
  8. *
  9. * <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights Reserved.</p>
  10. *
  11. * <p>Company: Steema Software SL</p>
  12. *
  13. * <p>Example:
  14. * <pre><font face="Courier" size="4">
  15. * $bar1Series->setMultiBar(MultiBars::$SIDEALL);
  16. *  or
  17. * $barSeries->setMultiBar(MultiBars::$SELFSTACK);
  18. * </font></pre></p>
  19. *
  20. @see com.steema.teechart.styles.CustomBar#getMultiBar
  21. */
  22.  
  23. class MultiBars
  24. {
  25.    /**
  26.    * Bar series are placed one behind the other.
  27.    */
  28.    public static $NONE 0;
  29.    /**
  30.    * Bar series points are placed one beside the other.
  31.    */
  32.    public static $SIDE 1;
  33.    /**
  34.    * Bar series are placed one on top of the other.
  35.    */
  36.    public static $STACKED 2;
  37.    /**
  38.    * Bar series are placed one on top of the other against a common axis
  39.    * scale 0..100.
  40.    */
  41.    public static $STACKED100 3;
  42.    /**
  43.    * Bar series, that is, all series points, are drawn one beside the other.
  44.    */
  45.    public static $SIDEALL 4;
  46.    /**
  47.    * The points of each bar series are drawn one on top of the other.
  48.    */
  49.    public static $SELFSTACK 5;
  50.  
  51.    public function MultiBars()   {}
  52. }
  53. ?>

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