Added a graphing functionality with Open Flash Chart, and added ability to graph...
[openemr.git] / library / openflashchart / php-ofc-library / ofc_bar.php
blob6ddda42749d243075ac2a31afe570b42072c8426
1 <?php
3 include_once 'ofc_bar_base.php';
5 class bar_value
7 function bar_value( $top, $bottom=null )
9 $this->top = $top;
11 if( isset( $bottom ) )
12 $this->bottom = $bottom;
15 function set_colour( $colour )
17 $this->colour = $colour;
20 function set_tooltip( $tip )
22 $this->tip = $tip;
26 class bar extends bar_base
28 function bar()
30 $this->type = "bar";
31 parent::bar_base();