HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
example.zeros_in_data.php
Go to the documentation of this file.
1 <?php // You can use zero values in data
2 $this->widget(
3  'booster.widgets.TbHighCharts',
4  array(
5  'options' => array(
6  'series' => array(
7  [
8  'data' => [0, 1.5, 4, 3, 1, 0, -1, -3, -4, -1.5, 0]
9  ],
10  [
11  'data' => new CJavaScriptExpression(
12  '[0, -3/2, -2*2, -0.3e1, -Math.pow(354,0), 1-1, 3/3, 3, 4, 4-2.5, 0]'
13  )
14  ]
15  )
16  )
17  )
18 );