clipbucket/upload/admin_area/charts/ofc-library/ofc_line_dot.php
Arslan Hassan 97139970d2 ADDED : Website Reports and stats
FIXED : Last Month Date Fixed
2010-01-23 13:16:19 +00:00

33 lines
No EOL
438 B
PHP

<?php
class dot_value
{
function dot_value( $value, $colour )
{
$this->value = $value;
$this->colour = $colour;
}
function set_colour( $colour )
{
$this->colour = $colour;
}
function set_size( $size )
{
$this->size = $size;
}
function set_tooltip( $tip )
{
$this->tip = $tip;
}
}
class line_dot extends line_base
{
function line_dot()
{
$this->type = "line_dot";
}
}