我遇到了一个问题,尽管在我的节点对象中包含“title”属性,但当我将鼠标悬停在节点上时,没有显示包含我的标题内容的弹出窗口。
这是我的选项以及我如何设置网络。
setUpNetwork(){
let container = document.getElementById('mynetwork');
//These options dictate the dynamic of the network
let options = {
nodes: {
shape: 'box'
},
interaction: {
dragNodes: false,
dragView: false,
hover: true
},
layout: {
randomSeed: undefined,
improvedLayout: true,
hierarchical: {
enabled: true,
levelSeparation: 180,
nodeSpacing: 180,
edgeMinimization: true,
parentCentralization: true,
direction: 'UD', // UD, DU, LR, RL
sortMethod: 'directed' // hubsize, directed
}
},
physics: {
enabled: false
}
}
// initialize your network!
this.network = new vis.Network(container, this.data, options);
}
当我将一个节点添加到我的网络节点列表中时,这是我的结构:
addNode(node: any){
try {
this.data.nodes.add({
id: node.id,
color: node.color,
title: node.title,
label: node.label
});
this.network.fit();
}
catch (err) {}
}
我运行代码的环境使得很难现场提供这个问题的示例。网络中的其他所有内容都可以正常工作(标签、ID、颜色),当我将鼠标悬停在节点上时,标题就不行了。
编辑:
我从弹出窗口工作的 vis.js复制了此示例中的代码。
// create an array with nodes
var nodes = new vis.DataSet([
{id: 1, label: 'Node 1', title: 'I have a popup!'},
{id: 2, label: 'Node 2', title: 'I have a popup!'},
{id: 3, label: 'Node 3', title: 'I have a popup!'},
{id: 4, label: 'Node 4', title: 'I have a popup!'},
{id: 5, label: 'Node 5', title: 'I have a popup!'}
]);
// create an array with edges
var edges = new vis.DataSet([
{from: 1, to: 3},
{from: 1, to: 2},
{from: 2, to: 4},
{from: 2, to: 5}
]);
// create a network
var container = document.getElementById('mynetwork');
var data = {
nodes: nodes,
edges: edges
};
var options = {interaction:{hover:true}};
this.network = new vis.Network(container, data, options);
我尝试在我的环境中只使用它;但是,弹出窗口不像示例中那样显示。我知道我的悬停事件有效,因为当我将鼠标悬停在节点上时,我包含了此代码以打印到控制台:
this.network.on("showPopup", function (params) {
console.log("DO SOMETHING");
})
我在这里缺少一些选项设置吗?尽管在我的节点对象中包含“标题”属性,但为什么我的悬停弹出窗口不显示,是否还有其他问题?