HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
example.basic.php
Go to the documentation of this file.
1 <?php // Basic usage of TbHighCharts
2 $this->widget(
3  'booster.widgets.TbHighCharts',
4  array(
5  'options' => array(
6  'series' => array(
7  [
8  'data' => [1, 2, 3, 4, 5, 1, 2, 1, 4, 3, 1, 5]
9  ]
10  )
11  )
12  )
13 );