悬停不在FlotChart的Stacked Bars中工作

时间:2014-07-10 08:24:35

标签: javascript jquery flot

有人可以帮我解决我的问题。 Hover在FlotChart中不起作用。

请检查以下代码吗?

function loadGraph(){
    //Display graph
    $.plot($("#placeholder"), ds, {
        grid:{
            hoverable: true,
            clickable: true,
            borderWidth : 0,
            margin : 10
        },
        xaxes: [ { ticks:ticks, rotateTicks: 0} ],
        yaxes: [ {  min: 0,
                    labelWidth : 40,
                    tickFormatter: function numberWithCommas(x) 
                    {   
                        return x.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");
                    },
                 }
                ],
        y2axis: { tickFormatter : charLang, tickLength : 10 },
        legend: { show: true, container: "#legendholder" }
    });
}

$("#placeholder").bind("plothover", function (event, pos, item) {
    if (item) { 
        alert("hey!");
    }
});

0 个答案:

没有答案