{
const selSvg = d3.create("svg").attr("viewBox", [0, 0, 500, 50]);
const data = [
[25, 25, 25, "rgba(128, 0, 128, 1.0)"],
[50, 25, 25, "rgba(0, 0, 255, 0.75)"],
[75, 25, 25, "rgba(0, 255, 0, 0.5)"],
[100, 25, 25, "rgba(255, 255, 0, 0.25)"],
[125, 25, 25, "rgba(255, 0, 0, 0.1)"]
];
const circles = selSvg
.selectAll("circle")
.data(data)
.join("circle")
.attr("cx", d => d[0])
.attr("cy", d => d[1])
.attr("r", d => d[2])
.attr("fill", d => d[3]);
return selSvg.node();
}