2013-02-21 139 views
0

我現在面臨一個問題:我得到了flot圖表,當它被點擊時,它顯示一個帶有數據的模塊窗口。flot懸停,而不是點擊事件

我需要做同樣的事情,但不是點擊事件,我需要在懸停時執行此操作。 github上的文檔僅顯示如何在點擊事件中執行此操作。我徘徊在做懸停同樣的事情。有人能幫我嗎?

+0

給我們展示一些代碼 – 2013-02-21 12:04:03

回答

0

與懸停

$(function(){ 
    $("#yourID").hover(function(){ 
    //your code goes here 
    }) 
}) 
+1

它應該是'function()' – 2013-02-21 12:04:47

0

綁定兩個處理程序更改功能事件匹配的元素,當鼠標指針進入和離開元件被執行。

$(function(){ 
    $("#yourID").hover(OnmouseoverFunction, Onmouseoutfunction); 
}) 

function OnmouseoverFunction() 
{ 
//on mouse over code 
} 

function Onmouseoutfunction() 
{ 
//on mouse outcode 
} 
2

用於在海軍報懸停事件被稱爲「plothover」,使事件綁定到該圖的容器和設置回調,像這樣:

$(diagramContainer).bind("plothover",function(event, pos, item) { 
    // event holds the js event, pos holds the (x,y) coordinate, item holds the 
    // closest data item to the event 
}); 

項usualy有足夠的信息要爲數據項添加工具提示,如屬性item.pageX和item.pageY,這些值將保存在屬性item.datapoint中,您可以找到訪問item.series屬性的系列配置(如item.series 。顏色)。

相關問題