0

我想从我尝试过的highcharts的plotoptions中调用一个函数,但它的抛出错误

plotOptions: {
                series: {
                    events: {
                        legendItemClick: function(event) {
                        //iam trying to call a function here
                        sampletest(testArr);

                        }
                    }
                }
            }

这可能吗..如何从 plotOptions 调用另一个函数。

我得到的错误是

类型错误:d 未定义

4

2 回答 2

0

是的,您可以从 plotoptions 事件中调用任何函数。Highcharts 允许我们这样做。只需检查该功能的范围

于 2013-05-09T13:21:33.310 回答
0

请看示例http://jsfiddle.net/gF8Cf/3/

    $(function () {
    $('#container').highcharts({
        plotOptions: {
            series: {
                cursor: 'pointer',
                events: {
                    click: function(event) {
                       custom();
                    }
                }
            }
        },

        series: [{
            data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]        
        }]
    });

    function custom(){
        alert('aaaa');
    }
});
于 2013-05-10T13:06:24.690 回答