在 d3.js 树代码中,有以下设置所有子级别/节点的 y 深度: // Normalize for fixed-depth. nodes.forEach(function(d) { d.y = d.depth * 220; });如何设置层次结构中特定级别的 Y 深度,例如第 3 级? 查看完整描述