以下のコードを使用して SVG 円を作成していますが、正常に動作しています。
nodeEnter.append("svg:circle")
.attr("r", 1e-6)
.attr("id", function(d) {return d.name; })
ここで、円の代わりにカスタム シンボルを使用したいと考えています。これらのシンボルは bmp ファイルに含まれています。
これを行う方法を教えてください。
ありがとうクリシュナ
この例はまさにあなたが探しているものだと思います:
興味深いコードは次のとおりです。
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);