如何迭代节点列表中的列表并使用d3渲染它们?

时间:2014-09-07 06:21:07

标签: d3.js

我有一个节点列表'每个节点都包含一个元素数组:

[{x: 45, y: 12, things: ['first', 'second', third']}
 [x: 12, y: 67, things: ['fourth, 'random', 'another']}]

我已经能够将这些节点中的每一个渲染为svg元素内的d3矩形。现在我想显示列表' thing'在每个节点内。

+--------+
| first  |
| second |
| third  |
+--------+

这与我在stackoverflow上看到的只处理单个文本的大多数其他答案不同(d3 add text to circled3 Node Labeling)我该怎么做?

0 个答案:

没有答案