Files
iTop/pages/php-ofc-library/ofc_bar_sketch.php
Denis Flaven fd8b3c835e - Upgraded to the latest version of Open Flash Charts (Version 2 Lug Wyrm Charmer)
- Localization of the menus 90% done.
- Removed the old types of Flash charts, (no longer used anyway, now we rely on open-flash-charts)

SVN:trunk[441]
2010-06-08 13:12:17 +00:00

30 lines
728 B
PHP

<?php
include_once 'ofc_bar_base.php';
class bar_sketch extends bar_base
{
/**
* @param $colour as string, HEX colour e.g. '#00ff00'
* @param $outline_colour as string, HEX colour e.g. '#ff0000'
* @param $fun_factor as integer, range 0 to 10. 0,1 and 2 are pretty boring.
* 4 to 6 is a bit fun, 7 and above is lots of fun.
*/
function bar_sketch( $colour, $outline_colour, $fun_factor )
{
$this->type = "bar_sketch";
parent::bar_base();
$this->set_colour( $colour );
$this->set_outline_colour( $outline_colour );
$this->offset = $fun_factor;
}
function set_outline_colour( $outline_colour )
{
$tmp = 'outline-colour';
$this->$tmp = $outline_colour;
}
}