{
"name": "Max",
"value": 107,
"children": [
{
"name": "Don",
"value": 60,
"children" [
{"name": "CC", "value": 25},
{"name": "Jim", "value": 35}
]
},
{
"name": "David",
"value": 47,
"children": [
{"name": "Jeff", "value": 32},
{"name": "Buffy", "value": 15}
]
}
]
}
如何使用d3访问最内层的子名?
我尝试过:
.text(function(d){return d.children?null:d.name;});
但它没有用......
当我这样做时
.text(function(d){return d.name});
它只显示外部循环的名称 - >唐,大卫。
d3.json('flare.json', function (data) {
var canvas = d3.select('p1')
.append('svg')
.attr('width', 800)
.attr('height', 800)
var color = d3.scale.category20c();
var data1 = data.children;
canvas.selectAll('text')
.data(data1)
.enter()
.append('text')
.attr('x', function (d) { return 2; })
.attr('y', function (d, i) { return i * 15; })
.attr('fill', 'black')
.style('font-size', '12px')
.text(function (d) { return d.children ? null: d.name; })
我之前的数据↓↓
{
"name": "Don",
"value": 75,
"children" [
{"name": "CC", "value": 25},
{"name": "Jim", "value": 35}
]
}
当数据采用这种单一的嵌套格式时,我的代码工作得很好,但是当我在它上面进行双重嵌套时,它就不再有效了
答案 0 :(得分:2)
你需要一个递归函数 -
function getNames(d) {
return d.children ? d.children.map(getNames) : d.name;
}
这将返回一个嵌套列表,其中包含没有子元素的元素的名称。