ofc_bar_3d.php 419 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. include_once 'ofc_bar_base.php';
  3. class bar_3d_value
  4. {
  5. function bar_3d_value( $top )
  6. {
  7. $this->top = $top;
  8. // $this->bottom = $bottom;
  9. }
  10. function set_colour( $colour )
  11. {
  12. $this->colour = $colour;
  13. }
  14. function set_tooltip( $tip )
  15. {
  16. $this->tip = $tip;
  17. }
  18. }
  19. class bar_3d extends bar_base
  20. {
  21. function bar_3d()
  22. {
  23. $this->type = "bar_3d";
  24. parent::bar_base();
  25. }
  26. }