参考这个小提琴示例:
我需要用图像替换符号......或者首先可能是单个图像......例如,这个图像:
https://github.com/favicon.ico
我在代码中尝试如下:
vis.selectAll("path")
.data(nodes)
.enter().append("path")
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
.append("image")
.attr("xlink:href", "https://github.com/favicon.ico")
.attr("x", -8)
.attr("y", -8)
.attr("width", 16)
.attr("height", 16)
.style("stroke", "black")
.style("stroke-width", "1px")
.call(force.drag);
它将标签附加 image
到每个path
标签,但不显示图像本身。有什么提示吗?