chart = {
const svg = d3.select(DOM.svg(width, height))
.style("width", "60%")
.style("height", "auto")
.style("font", "10px sans-serif");
svg.append("mask")
.attr("id", "myMask")
.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", width)
.attr("height", height)
.attr("fill", "black");
svg.select("#myMask")
.append("circle")
.attr("cx", 100)
.attr("cy", 110)
.attr("r", 100)
.attr("fill", "white");
svg.append("image")
.attr("x", 0)
.attr("y", 0)
.attr("width", 250)
.attr("xlink:href", 'https://raw.githubusercontent.com/aaronxhill/standd/master/jj.jpg')
.attr("mask", "url(#myMask)");
return svg.node();
}