我有节点和边缘的网络图,并希望在点击后获取节点数据。我目前有
var network = new vis.Network(container, data, options);
network.on( 'click', function(properties) {
console.log('clicked node ' + properties.nodes);
});
但这只是给了我一些内部身份[105]。有没有办法获取与节点关联的实际数据。
答案 0 :(得分:15)
您在属性中获得的节点ID不是"某些内部ID",但这些是您自己定义的节点的ID。您只需使用以下节点从您自己的DataSet
读取节点的数据:
var nodes = new vis.DataSet([...]);
var edges = new vis.DataSet([...]);
var data = {nodes: nodes, edges: edges};
var network = new vis.Network(container, data, options);
network.on( 'click', function(properties) {
var ids = properties.nodes;
var clickedNodes = nodes.get(ids);
console.log('clicked nodes:', clickedNodes);
});