0

这段代码实际上只画了标题

它像 yii 扩展一样使用 Highcharts

<?php $this->Widget('ext.highcharts.HighchartsWidget', array(
   'options'=>array(
        'title' => array('text' => 'Grafico a torta'),
        'chart' => array('renderTo' =>'charts'),
        'credits' => array('enabled' => false),
        'series' => array (
            'type' => 'pie',
            'name' => 'name of serie',
            'data' => array (
                array('Firefox', 44.2),
                array('IE7', 26.6),
                array('IE6', 20),
                array('Chrome', 3.1),
                array('Other', 5.4)
            ),
        ),
   )
));

?>

它创建了这个 javascript

jQuery(window).on('load',function() {
var chart = new Highcharts.Chart(
    {'chart':{'renderTo':'charts'},
     'exporting':{'enabled':true},
     'title':{'text':'Grafico a torta'},
     'credits':{'enabled':false},
     'series':{
           'type':'pie',
           'name':'name of serie',
           'data':[
                ['Firefox',44.2000000000000028],
                ['IE7',26.6000000000000014],
                ['IE6',20],
                ['Chrome',3.1000000000000001],
                ['Other',5.4000000000000004]
           ]}});
});

我无法理解出了什么问题......没有抛出 js 错误,没有控制台调试信息,什么都没有......

我错过了什么?

4

3 回答 3

4

检查您的系列:

series:**[**{
           type:'pie',
           name:'name of serie',
           data:[
                ['Firefox',44.2000000000000028],
                ['IE7',26.6000000000000014],
                ['IE6',20],
                ['Chrome',3.1000000000000001],
                ['Other',5.4000000000000004]
           ]}**]**
    });

您缺少 [] 系列。检查这个:http: //jsfiddle.net/tqVF8/9/

于 2013-04-30T14:58:57.530 回答
0

再次使用数组进行系列

section =>
   'series' => array (
        array (
          'type' => 'pie',
          'name' => 'Browser share',
          'data' => array (
           array('Firefox', 44.2),
           array('IE7', 26.6),
           array('IE6', 20),
           array('Chrome', 3.1),
           array('Other', 5.4)
        ),
    ),
),        

它对我有用。

于 2013-05-02T06:15:56.133 回答
0

在这个数据中是事件数量的数组。

<?php

$this->Widget('application.extensions.highcharts.HighchartsWidget',
array('options'=>array( 'title'=>array('text'=>'User Distribution'),
                        'tooltip'=>array('formatter'=> 'js:function() { 
        return "<b>"+this.point.name+"</b>: "+Math.round(this.percentage)+"%"
          }'),

'credits' => array('enabled' => true),
'exporting' => array('enabled' => true),
'plotOptions'=>array('pie'=> array('allowPointSelect'=>true,'cursor'=>'pointer',
                                                                                            'dataLabels'=>array('enabled'=>true),
                                                                                            'showInLegend'=>true)
                                                                        ),
                                                    'series' =>                           array(array('type'=>'pie',                                                             'name'=>'User Distrubution',
                                                                            'data' => $data,)
                                                                    )
                                                    )
                                    )
                        );

?>

于 2013-09-18T04:53:17.810 回答