您好我有d3 v3的代码:
var cluster = d3.layout.cluster()
.size([360, innerRadius])
.sort(function(a, b) {
return d3.descending(a.key, b.key);
})
.separation(function separation(a, b) {
return (a.parent == b.parent ? 1 : 1.2) / a.depth;
})
.value(function(d) {
return d.size;
});
var bundle = d3.layout.bundle();
但是在d3 v4中我找不到函数或属性的等于.value,.sort和d3.layout.bundle()
我希望你能帮助我,谢谢。
答案 0 :(得分:0)
d3.layout.cluster
现在是d3.cluster
。
d3.cluster
现在有尺寸和分离方法。
node.path
替换了 d3.layout.bundle
。排序和值方法现在也在d3-hierarchy内,而不是d3.cluster
。
这是版本4的official changes guide。