0

使用 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);
4

1 回答 1

1

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

See here for an example of how to use foreignObject. You may also find this tutorial helpful for creating the actual table.

于 2013-10-08T16:11:39.493 回答