simpleViz = {
const svg = d3.create("svg").attr("width", width).attr("height", height);
svg
.append("rect")
.attr("width", width)
.attr("height", height)
.attr("fill", bkgdColor);
svg
.append("g")
.attr("transform", "translate(0," + (height - margin) + ")")
.call(xAxis)
.call((g) => {
g.selectAll("line");
});
svg
.append("g")
.attr("transform", "translate(" + margin + ")")
.call(yAxis)
.call((g) => {
g.select(".domain").remove();
g.selectAll("line").attr("opacity", ".1");
});
svg
.selectAll(".dataPoints")
.data(sandsnapStates)
.join("circle")
.attr("cx", (d) => statesToPixelsX(d.state))
.attr("cy", (d) => grainSizeToPixelsY(d.D50))
.attr("r", 3)
.attr("fill", eleColor);
return svg.node();
}