在D3中使用多个系列更新Scatterplot时出现问题

时间:2013-09-11 11:17:53

标签: javascript d3.js

我正在尝试在Scatterplot with Multiple Series

中实施更新

我想我需要定义关键元素,但不知道如何更新系列。

  svg.selectAll(".series")
      //.data(series,function(d) { return Math.random()*35.12})
      .data(series,function(d) { return Math.random()*35.12})
    .enter().append("g")
      .attr("class", "series")
      .style("fill", function(d, i) { return z(i); })
    .selectAll(".point")
      .data(function(d) { return d; })
    .enter().append("circle")
      .attr("class", "point")
      .attr("r", 4.5)
      .attr("cx", function(d) { return x(d.x); })
      .attr("cy", function(d) { return y(d.y); });

如何更新和删除。 谢谢你的帮助

0 个答案:

没有答案