commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / packages / OpenFlashChart / php-ofc-library / ofc_line_dot.php
CommitLineData
7f254ad8
AE
1<?php\r
2\r
3class dot_value\r
4{\r
5 function dot_value( $value, $colour )\r
6 {\r
7 $this->value = $value;\r
8 $this->colour = $colour;\r
9 }\r
10 \r
11 function set_colour( $colour )\r
12 {\r
13 $this->colour = $colour;\r
14 }\r
15 \r
16 function set_size( $size )\r
17 {\r
18 $this->size = $size;\r
19 }\r
20 \r
21 function set_tooltip( $tip )\r
22 {\r
23 $this->tip = $tip;\r
24 }\r
25}\r
26\r
27class line_dot extends line_base\r
28{\r
29 function line_dot()\r
30 {\r
31 $this->type = "line_dot";\r
32 }\r
33}