从图表中删除线条并绘制新线条

时间:2013-05-23 12:41:43

标签: javascript d3.js

我想绘制最小均方误差函数,并将该行更新为通过单击该图表添加的每个新点。到目前为止一切正常,但我似乎无法删除旧行以仅 新的行。

这是更新行的代码 - 而不是其他地方更新的点。

Graph.prototype.update = function() {

    var this_ = this;
    var data = d3.csv.parse(this.collectData());
    var color = d3.scale.category10();

    this.svg.selectAll("lines").remove();

    lines = this.svg.selectAll("lines")
        .data(data)
        .attr("class", "update");

    color.domain(d3.keys(data[0]).filter(function(key) { return key !== "x"; }));

    var lineData = color.domain().map(function(name) {
        return {
          name: name,
          values: data.map(function(d) {
            return {x: d.x, y: +d[name]};
          })
        };
    });

    lines.enter().append("path")    
        .data(lineData)
        .attr("class", "line")
        .attr("d", function(d) { return this_.line(d.values); })
        .style("stroke", function(d) { return color(d.name); });
};

到目前为止看起来如何:

enter image description here

1 个答案:

答案 0 :(得分:1)

在添加新行之前,请删除所有现有行:

// remove existing lines
this.svg.selectAll('lines').remove();

var lines = this.svg.selectAll('lines')
    .data(data);

// the rest of the code here.

然后,添加包含新数据的行。