最可能的問題是您的JSON類沒有「名稱」。
對,這不是問題
你的代碼的相關部分如下:
var node = svg.selectAll("path.node")
.data(nodes)
.enter().append("path").attr("class", "node")
.style("fill", function(d) { return fill(d.value); })
.style("stroke", function(d) { return d3.rgb(fill(d.value)).darker(); })
.call(force.drag);
// HERE should go node manipulation to add the text
force
.nodes(nodes)
.links(links)
.on("tick", tick)
.start();
function tick() {
//node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")";);
node.attr("d", function(d) { return clip({"type":"F {"type":"Point","coordin...
link.attr("d", function(d) { return clip({"type":"Feature","geometry":{ ...
我已插入註釋行,其中的節點的操作應該去,如果你想爲節點添加標籤。你在tick函數內部這樣做了(好吧,我認爲你正在嘗試在那裏做,代碼不在小提琴中),並且該函數應該僅用於操縱節點的屬性。創建文本並將其附加到節點的位置不在該函數中。
我的JSON文件看起來像這樣 { 「節點」: { 「名」: 「米里哀」, 「組」:1}, { 「名」: 「拿破崙」, 「組」:1} ,..... – user2052251 2013-02-26 06:28:40
對不起,沒有看到對悲慘世界的提及:-)你的代碼是否包含在小提琴中?我無法找到它 – vals 2013-02-26 18:40:38
@vals ..你可以從這裏得到miserables.json http://bost.ocks.org/mike/miserables/miserables.json – user2052251 2013-02-26 18:59:51