在D3气泡图中的每个气泡上叠加图像

时间:2012-11-30 07:09:23

标签: d3.js bubble-chart

我目前正在研究D3中的动态气泡图:http://bost.ocks.org/mike/nations/

enter image description here

我想在每个气泡上叠加一个图像,所以我添加了代码:

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);

但它不起作用。非常感谢任何帮助。

0 个答案:

没有答案