在 Cytoscape.js 中将鼠标悬停在图形的外部节点上时,不会显示 qTip 对话框。
是否有在悬停在外部节点上时显示 qTip 气泡?我可以在上半部分的节点上弹出 qtip,但在图的两侧不会太多。尤其是在下半部分。
cy.elements('node').qtip({
id: function() {
return this.data('id');
},
content: function() {
return this.data('name') + '<br /><em>$' + this.data('weight') + '</em>';
},
position: {
my: 'bottom right',
viewport: $(etl_cyto_div),
adjust: {
cyViewport: true,
method: 'flip none'
}
},
show: {
cyBgOnly: false
},
hide: {
cyBgOnly: false,
cyViewport: true,
delay: 100
},
style: {
classes: 'qtip-tipsy',
tip: {
width: 16,
height: 8
}
}
});