var nodes = vis.selectAll("path")
        .data(series.stack.filter( function(d) { return d.y !== null } ))
        .enter().append("svg:circle")
          .attr("cx", function(d) { return graph.x(d.x) })