私は現在、次のように、オブジェクトに子があるかどうかに基づいてオブジェクトにクラスを与えるデータ視覚化を持っています。
d3.json("skills.json", function(error, root) {
var node = svg.datum(root).selectAll(".node")
.data(pack.nodes)
.enter().append("g")
.attr("class", function(d) { return d.children ? "node" : "leaf node"; })
私がやりたいのは、彼らの深さに基づいて、または少なくとも、彼らが子供の子供を持っているかどうかに基づいて、本質的に次のような異なるクラスを彼らに与えることです(構文はわかりませんが):
.attr("class", function(d) { return d.children.children ? "node" ? d.children ? "branch" : "leaf node"; });
誰かがこれを行うための適切な方法を知っていますか?