Created
December 11, 2012 03:30
-
-
Save hidayat365/4255717 to your computer and use it in GitHub Desktop.
Yii-Hightchart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$this->Widget('ext.highcharts.HighchartsWidget', | |
array( | |
'options'=>array( | |
'title' => array('text' => 'Accounts Receivable by Department'), | |
'chart' => array('height'=>320), | |
'series' => array( | |
array( | |
'type'=>'pie', | |
'name'=>'Receivable', | |
'data'=>array( | |
array('DKI',150), | |
array('Bandung',80), | |
array('Medan',30), | |
array('Bandung',50), | |
array('Makassar',10), | |
array('Balikpapan',5), | |
array('Padang',15), | |
), | |
), | |
), | |
), | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment