value
的例子{{1}}做了什么?
答案 0 :(得分:2)
如果你从你给出的例子中看到这段代码:
var link = svg.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function (d) {
return Math.sqrt(d.value);
});
您可以看到JSON文件中的value
属性用于设置将该节点连接到其目标节点的行的stroke-width
。
具体是这部分功能:
.style("stroke-width", function(d) { return Math.sqrt(d.value); });