身体点击问题与高图库

时间:2012-12-05 18:32:23

标签: jquery highcharts

我创建了一个弹出窗口,当我点击身体时会隐藏它。但是在hightchart中,身体点击不起作用。

Hightchart图书馆: http://code.highcharts.com/highcharts.js

我的jQuery代码是:

$(function () {
    var chart;
    $(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            type: 'line',
            marginRight: 130,
            marginBottom: 25
        },
        title: {
            text: 'Monthly Average Temperature',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: WorldClimate.com',
            x: -20
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        yAxis: {
            title: {
                text: 'Temperature (°C)'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            formatter: function() {
                    return '<b>'+ this.series.name +'</b><br/>'+
                    this.x +': '+ this.y +'°C';
            }
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -10,
            y: 100,
            borderWidth: 0
        },
        series: [{
            name: 'Tokyo',
            data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
        }, {
            name: 'New York',
            data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
        }, {
            name: 'Berlin',
            data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
        }, {
            name: 'London',
            data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
        }]
    });
    });

    $("body").click(function(){
      $(".popupBox").hide();  
    });
    $(".popup").click(function(e){
    e.stopPropagation();
     $(".popupBox").toggle();      
    });
});​

demo

提前感谢您的解决方案

3 个答案:

答案 0 :(得分:5)

你不能调用'container'div的click事件,因为'container'div的所有子元素阻止了点击事件冒泡DOM树。

所以你必须调用mousedown事件而不是点击。

$(function() {
    var chart;
    $(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            type: 'line',
            marginRight: 130,
            marginBottom: 25
        },
        title: {
            text: 'Monthly Average Temperature',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: WorldClimate.com',
            x: -20
        },
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                                    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        yAxis: {
            title: {
                text: 'Temperature (°C)'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'}]
        },
        tooltip: {
            formatter: function() {
                return '<b>' + this.series.name + '</b><br/>' + this.x + ': ' + this.y + '°C';
            }
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -10,
            y: 100,
            borderWidth: 0
        },
        series: [{
            name: 'Tokyo',
            data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]},
        {
            name: 'New York',
            data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]},
        {
            name: 'Berlin',
            data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]},
        {
            name: 'London',
            data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]}]
    });
    });
    $("html").click(function() {
       $(".popupBox").hide();
    });
    $(".popup").click(function(e) {
       e.stopPropagation();
       $(".popupBox").toggle();
    });
    $("#container").mousedown(function(e) {
       $(".popupBox").hide();
    });
});​

Demo

答案 1 :(得分:2)

您可以在图表容器的mousedown事件中处理此问题

$("#container").mousedown(function(){
      $(".popupBox").hide();      
});

这将在任何鼠标按钮上触发,您可以使用传递给处理程序的eventObject的which属性检查按钮和句柄

$("#container").mousedown(function(e){
      if(e.which==1){ // Only on left click
         $(".popupBox").hide();      
      }
});

<强> Handling chart container click event | Highchart & Highstock
Updated demo

答案 2 :(得分:1)

它不是关于脚本参考。它关于图表点击事件。我将点击事件添加到图表并且它可以工作。

 chart: {
            renderTo: 'container',
            type: 'line',
            marginRight: 130,
            marginBottom: 25,

            renderTo: 'container',
            events: {
                click: function(event) {
                    $(".popupBox").hide();
                }

            },
        },

http://jsfiddle.net/3jLtE/18/