function update3(all) {
if(d3.select('.day-title').empty()) {
svg.append('text')
.text('34 days')
.attr('class', 'day-title')
.attr('x', x2(382))
.attr('y', height / 2)
.attr('fill', 'white')
}
d3.select('.day-title')
.transition().duration(1000)
.attr('opacity', 1)
svg.selectAll('.line')
.on("mouseover", function(d, i){
return tooltip.style("visibility", "visible")
.text(`${i[0].name}: ${i.length} days`);
})
.on("mousemove", function(event){
return tooltip.style("top", (event.pageY-10)+"px").style("left",(event.pageX+10)+"px");
})
.on("mouseout", function(){
return tooltip.style("visibility", "hidden");
});
svg.selectAll(".line")
.transition().duration(2000)
.attr("d", line2)
.attr("stroke-width", height * .75)
d3.select('.yAxis')
.transition().duration(2000)
.attr('opacity', 0)
d3.select('.xAxis')
.call(d3.axisBottom(x2).ticks(width / 80).tickSizeOuter(0))
if(d3.select('.axis-title').empty()){
d3.select('.xAxis')
.append('text')
.attr('class', 'axis-title')
.text('Days')
.attr('opacity', 1)
.attr('x', margin.left + (width - margin.left - margin.right) / 2)
.attr('y', margin.bottom * .7)
}
d3.selectAll('button')
.classed('active', false)
d3.select("#update3")
.classed('active', true)
d3.select('.top-text')
.html("<span>The United States' <span class='label' style='background:#9467BD; color:white;'>most recent 100,000 deaths</span> occurred more rapidly (34 days) than any series of 100,000 deaths prior.</span>")
}