このhttp://flowingdata.com/2012/08/02/how-to-make-an-interactive-network-visualization/ の作業
このコード行では:
var node = nodesG.selectAll("circle.node").data(nodes, function (d) {
console.log("hello");
return d.id;
});
はconsole.log
決して実行されません。理由はわかりません。
これはnodesG
次のとおりです。
var vis = d3.select(selection).append("svg")
.attr("width", width)
.attr("height", height);
nodesG = vis.append("g").attr("id", "nodes");