我正在完成本教程
http://flowingdata.com/2012/08/02/how-to-make-an-interactive-network-visualization/
我正试图让更新节点正常工作(我的数据略有不同)。
var updateNodes = function(nodes){
console.log("updateNodes Called");
console.log(nodes);
var node = nodesG.selectAll("circle.node").data(nodes,function(d){
return d.id;
});
node.enter().append("circle").attr("class","node")
.attr("cx",x)
.attr("cy",y)
.attr("r",1000)
.style("fill","steelblue")
.style("stroke","black")
.style("stroke-width",1.0);
node.exit().remove();
}
这不会使DOM上出现任何圆圈。
nodesG定义为:
var nodesG = d3.selectAll("g");
从
调用此函数var update = function(){
force.nodes(data.nodes);
updateNodes(data.nodes);
//force.links(curLinksData);
//updateLinks();
//force.start();
}
为什么没有出现?
谢谢,
答案 0 :(得分:4)
您的代码中没有效果的第一件事是您没有创建一个svg
元素,您将在其中绘制圆圈。
所以你必须替换
var nodesG = d3.selectAll("g");
通过
var nodesG = d3.select('body').append('svg');
然后,您没有很好地定义圆圈的属性x和y。我想这些属性取决于每个节点的属性x
和y
。因此,您必须替换以下内容:
.attr("cx", x)
.attr("cy", y)
by:
.attr("cx", function(d){return d.x})
.attr("cy", function(d){return d.y})
update()
这是一个有效的jsFiddle:http://jsfiddle.net/chrisJamesC/S6rgv/