destaca = function(e, d){
let me = d3.select(this);
d3.selectAll("#cg circle")
.attr("opacity", .25);
me
.attr("opacity", "1")
.attr("stroke-width", 2);
d3.select("g#annotation")
.insert("text")
.attr("id", "label")
.attr("x", me.attr("cx"))
.attr("y", me.attr("cy"))
.attr("dy", radius(d.chuva) + 14)
.attr("text-anchor", "middle")
.attr("font-family", "sans-serif")
.attr("font-size", "12")
.text(formatDate(d.semana) + ", " + formatNum(d.tmedia) + "C e " + formatNum(d.chuva) + "mm");
let div = d3.select("body").append("div")
.attr("id", "details")
.attr("class", "tooltip");
}