D3.js树状图,叶子呈现为键值对


使用 d3

.js 我有分层数据并使用此示例 d3 树状图,这几乎可以满足我的需求,但我需要显示一个表格,而不是文本字符串作为叶子。数据遵循以下模式:

{"name": "root",
 "children": [
  {"name": "dtable",
   "children": [
    {"label": "la01", "tag":"section", "title":"Section One"}
    {"label": "la02", "tag":"section", "title":"Section Two"}
    {"label": "la0201", "tag":"subsection", "title":"Subsection Two:One"}
    ]
  }
}

我希望叶子呈现如下:

----------------------------------------------
| label    | tag        | title              |
----------------------------------------------
| la01     | section    | Section One        |
| la02     | section    | Section Two        |
| la0201   | subsection | Subsection Two:One |
----------------------------------------------

d3 示例具有此代码段,它将叶子显示为文本字符串。我不知道如何重新设计或替换代码以显示表格:

nodeEnter.append("svg:text")
  .attr("x", function(d) { return d.children || d._children ? -10 : 10; })
  .attr("dy", ".35em")
  .attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })
  .text(function(d) { return d.name; })
  .style("fill-opacity", 1e-6);

渲染像表格这样大的东西可能很难在空间上实现。最简单的方法是追加 foreignObject 元素而不是 text 元素,然后创建一个包含需要显示的数据的 HTML table

有关如何使用foreignObject的示例,请参阅此处。您可能还会发现本教程对创建实际表很有帮助。

相关内容

  • 没有找到相关文章

最新更新