Example Code:
$arrayData = new CActiveDataProvider('Model');
$arrayData = $arrayData->getData();
// Line & Colum Graph in the same Chart
$this->widget('application.extensions.amcharts.CAmChartWidget',
array(
'width' => 700,
'height' => 400,
'Chart'=>array(
'dataProvider'=>$arrayData,
'categoryField' => 'DescriptionA'
),
'Graphs'=>array(
array(
'valueField' => 'value1',
'title'=>'Value',
'type' => 'bar'
),
array(
'valueField' => 'value2',
'title'=>'Value',
'type' => 'line',
'fillColors'=>'Transparent',
'fillAlphas'=>'0',
'lineColor'=>'#EE2299',
'bullet'=>'round'
)),
'CategoryAxis'=>array(
'title'=>'Model Name'
),
'ValueAxis'=>array(
'title'=>'Value')
));
//Pie Chart
$this->widget('application.extensions.amcharts.CAmChartWidget',
array(
'width' => 700,
'height' => 400,
'Chart'=>array(
'dataProvider'=>$arrayData,
'titleField' => 'Description',
'valueField' => 'value1',
'type' => 'pie'
)
));
Google Prject Code: yii-amchart-widget
You are free to use, distribute and modify
If you have any improvement contact me ;-)
best regards

Help












