我想一起使用qtip與cytoscape.js到dispaly在節點上的工具提示鼠標懸停事件與cytoscape.js創建圖表在一起。我已經放在裏面準備好以下代碼:function(),如下所示:如何使用工具提示的JavaScript庫(qtip.js)與cytoscape.js
cy.on('mouseover','node',function (event) {
var eid = $(this).data('id');
$(this).qtip({
overwrite: false,
content: eid,
position: {
my: 'right center',
at: 'left center',
target: $(this)
},
show: {
event: event.type,
ready: true
},
hide: {
fixed: true
}
}, event);
});
但是,沒有提示在鼠標懸停事件節點顯示。請幫助我。
你不能節點或邊緣時。 cystoscape使用canvas,而qtip需要一個節點來附加自己。 – Layke
請參閱回答你類似的問題:http://stackoverflow.com/questions/20993149/how-to-add-tooltip-on-mouseover-event-on-nodes-in-graph-with-cytoscape-js – maxkfranz
我已經嘗試通過使用** cy.on()**方法來綁定事件,如上面的代碼所示,但它不起作用。請幫忙。 – hp36