Added support of 'drill-down' (i.e on_click) on bar charts

SVN:trunk[1313]
This commit is contained in:
Denis Flaven
2011-06-30 14:38:13 +00:00
parent 692fd91801
commit 2ae4aca687

View File

@@ -47,6 +47,12 @@ class bar_value
{ {
$this->tip = $tip; $this->tip = $tip;
} }
function on_click( $event )
{
$tmp = 'on-click';
$this->$tmp = $event;
}
} }
class bar extends bar_base class bar extends bar_base