<?php $this->widget(‘ext.highcharts.highcharts.HighchartsWidget’, array(
'options' => array(
// 'colors'=>array('#6AC36A', '#FFD148', '#0563FE', '#FF2F2F', '#000000'),
'colors' => array('#FFD148', '#0563FE', '#FF2F2F', '#000000'),
'gradient' => array('enabled' => true),
'credits' => array('enabled' => false),
'exporting' => array('enabled' => false),
'chart' => array(
'plotBackgroundColor' => '#ffffff',
'plotBorderWidth' => null,
'plotShadow' => false,
'height' => 400,),
'title' => false,
'tooltip' => array(
'formatter' => 'js:function() { return this.point.name+": <b>"+(this.percentage)+"</b>"; }',),
'plotOptions' => array(
'pie' => array(
'allowPointSelect' => true,
'cursor' => 'pointer',
'dataLabels' => array(
'enabled' => true,),
'showInLegend' => true,)),
'series' => array(
array(
'type' => 'pie',
'name' => 'Percentage',
'data' => array(
array('Ready / Deployable', 15),
array('User Maintenance', 30),
array('Manufacturer Maintenance', 40),
array('Not Operation Ready', 10),
array('Checked Out', 5)
),
),
),
)
));
?>