Hi All,
I am trying to use highcharts in my web application and downloaded the highchart zip file from herehere ,I put the below code in view $this->Widget(‘ext.highcharts.HighchartsWidget’, array(
‘options’ => array(
'title' => array('text' => 'Fruit Consumption'),
'xAxis' => array(
'categories' => array('Apples', 'Bananas', 'Oranges')
),
'yAxis' => array(
'title' => array('text' => 'Fruit eaten')
),
'series' => array(
array('name' => 'Jane', 'data' => array(1, 0, 4)),
array('name' => 'John', 'data' => array(5, 7, 3))
)
)
)); ,As per the installation instructions give on the extension site,But when i try to run the web application I am getting the below error
[color="#FF0000"]Alias "ext.highcharts.HighchartsWidget" is invalid. Make sure it points to an existing PHP file and the file is readable.[/color]
I have googled it ,but didn’t find anything regarding the error,Can any one please let me know what went wrong and where else I need to put the entry of this extension.I have just starting learning yii.Any help would be plus
Thanks