{
const svg = d3.select(DOM.svg(width, height));
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
svg.append("g")
.attr("stroke", "#000")
.attr("stroke-opacity", 0.2)
.selectAll("circle")
.data(data)
.enter().append("circle")
.attr("cx", d => x(d.date))
.attr("cy", d => y(d.value))
.attr("fill", d => z(d.value))
.attr("r", 2.5)
.on("click",function(d){
popup.html(absoluteUrl("Google", "www.google.com")
+ absoluteUrl("Youtube", "www.youtube.com")
+ absoluteUrl("Techcrunch", "www.techcrunch.com"))
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY + 20) + "px")
.style("opacity",1.0)
.append("text")
.text("X")
.on("click", function(d) {
popup.style("opacity",0.0);
})
console.log(popup);
})
return svg.node();
}