gpt4 book ai didi

d3.js 符号而不是圆圈

转载 作者:行者123 更新时间:2023-12-02 00:07:55 25 4
gpt4 key购买 nike

我正在使用以下代码创建 SVG 圆圈,并且工作正常。

nodeEnter.append("svg:circle")
.attr("r", 1e-6)
.attr("id", function(d) {return d.name; })

现在我想使用自定义符号而不是圆圈。我在 bmp 文件中有这些符号。

请指导我如何执行此操作。

谢谢奎师那

最佳答案

我认为 this example正是您要找的:

有趣的代码是:

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

关于d3.js 符号而不是圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17227656/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com