|
HCE Project DC service web UI
0.2
Hierarchical Cluster Engine DC service web UI
|
Makes use of the Google Visualization service to render charts
TbHighCharts is a layer of the amazing Highcharts
To use this widget, you may insert the following code in a view:
$this->widget('booster.widgets.TbHighCharts', array(
'options'=>array(
'title' => array('text' => 'Fruit Consumption'),
'xAxis' => array(
'categories' => array('Apples', 'Bananas', 'Oranges')
),
'yAxis' => array(
'title' => array('text' => 'Fruit eaten')
),
'series' => array(
array('name' => 'Jane', 'data' => array(1, 0, 4)),
array('name' => 'John', 'data' => array(5, 7, 3))
)
)
));
To find out more about the possible $options attribute please refer to Highcharts site