调试demo:http://jsfiddle.net/D7nyT/如果要响应整个charts事件可以在chart字段了增加events
$(function () {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            events: {
                click: function () {
                        alert('zswang 路过!');
                }
            }
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        plotOptions: {
            series: {
                cursor: 'pointer',
                events: {
                    click: function () { //就是这里的事件响应不了。而且我不太会调试,希望得到大家指点!
                        alert('You just clicked the graph');
                    }
                }
            }
        },        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]
        }]
    });
});