this.miniView.append('g').selectAll('.laneLines')
            .data(this.lanes)
            .enter().append('line')
            .attr('x1', 0)
            .attr('y1', function (d:any) { return d3.round(instance.y2(d.id)) + 0.5; })