0

我想用散点系列上的一个点注册一个点击事件。当图表上没有显示其他系列时,此方法有效。但是,当显示线条系列时,我无法在分散系列上发生点击。它只注册在线系列。无论我将系列添加到图表中的顺序如何,都会发生这种情况。在这种情况下,如何在散点上注册点击事件?

我在这里有一个问题示例:http: //jsfiddle.net/scottmlaplante/AfNzC/1/

var chart = new Highcharts.StockChart({
    chart: {
        renderTo: 'container'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },
    navigator:{
        baseSeries:1  
    },
    plotOptions: {
        series: {
            cursor: 'pointer',
            point: {
                events: {
                    click: function(event) {
                        alert ('Category: '+ this.category +', value: '+ this.y + event.point.series.name);
                    }
                }
            }
        }
    },

    series: [
        {
        type: "scatter",
        name: "scatter 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]        
    },
        {
        type: "line",
        name:"line 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]        
    }]
});
4

1 回答 1

1

您可以通过检查系列索引来识别哪个系列点是 clickec。

if(this.series.index==1)
                        alert('scatter');
                    else
                        alert('line')

http://jsfiddle.net/scottmlaplante/AfNzC/1/

于 2013-02-07T15:23:27.370 回答