HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
booster\widgets\charts Namespace Reference

Detailed Description

TbGoogleVisualizationChart class file

Author
: antonio ramirez anton.nosp@m.io@c.nosp@m.lever.nosp@m.tech.nosp@m..biz

Makes use of the Google Visualization service to render charts

See Also
https://developers.google.com/chart/interactive/docs/gallery

TbHighCharts class file

Author
: antonio ramirez anton.nosp@m.io@c.nosp@m.lever.nosp@m.tech.nosp@m..biz

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