在圆圈内添加图像D3

时间:2013-11-20 03:41:56

标签: d3.js label force-layout

我正试图找到一种方法,让D3中的圆圈内有图像,旁边有文字。

如果它有任何不同,我会使用强制导向图。

到目前为止,我只能找到部分解决方案(只有图像,只有文字,只有圆圈),但非全部将它们组合在一起。

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

此示例有帮助吗? http://bl.ocks.org/mbostock/950642

相关代码在这里:

node.append("image")
      .attr("xlink:href", "https://github.com/favicon.ico")
      .attr("x", -8)
      .attr("y", -8)
      .attr("width", 16)
      .attr("height", 16);