0

我正在尝试在具有多个系列的散点图中实现更新

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

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

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

4

0 回答 0