私は現在、D3 のモーション バブル チャートに取り組んでいます: http://bost.ocks.org/mike/nations/ :
それぞれのバブルに画像を重ねたいので、次のコードを追加しました。
var dot = svg.append("g")
.attr("class", "dots")
.selectAll(".dot")
.data(interpolateData(formatDate(format, minDate)))
.enter()
.append("circle")
.attr("class", "dot")
.style("fill","none")
.call(position)
.sort(order);
dot.append("image")
.attr("xlink:href", "https://github.com/favicon.ico")
.attr("width", 16)
.attr("height", 16)
.call(position);
しかし、それはうまくいきません。どんな助けにも感謝します。