commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / packages / OpenFlashChart / php-ofc-library / ofc_bar_3d.php
1 <?php
2
3 include_once 'ofc_bar_base.php';
4
5 class bar_3d_value
6 {
7 function bar_3d_value( $top )
8 {
9 $this->top = $top;
10 }
11
12 function set_colour( $colour )
13 {
14 $this->colour = $colour;
15 }
16
17 function set_tooltip( $tip )
18 {
19 $this->tip = $tip;
20 }
21 }
22