var strokeNodes = vis.selectAll('path.stroke')
                                .data(data)
                                .enter().append("svg:path")
        .classed('stroke', true)
        .attr("d", this.seriesStrokeFactory());