Add php files
This commit is contained in:
33
include/ECM/open_flash_chart2/php-ofc-library/ofc_line_dot.php
Executable file
33
include/ECM/open_flash_chart2/php-ofc-library/ofc_line_dot.php
Executable file
@@ -0,0 +1,33 @@
|
||||
<?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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user