viewof selection = {
const svg = d3.select(DOM.svg(width, height))
.property("value", []);
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
const dot = svg.append("g")
.attr("fill", "none")
.selectAll("g")
.data(freezingData)
.join("circle")
.attr("transform", d => `translate(${x(d[xField])},${y(d[yField])})`)
.attr("stroke", d => d.closure == "False" ? "steelblue" : "#D95D5D")
.attr("stroke-width", d => d.closure == "False" ? 1.5 : 4)
.attr("r", d => d.closure == "False" ? 3 : 7)
.attr("opacity", d => d.closure == "False" ? 0.4 : 0.8)
svg.append("g")
.call(d3.brush()
.extent([[margin.left, margin.top], [width - margin.right, height - margin.bottom]])
.on("start brush end", brushed));
function brushed() {
let value = [];
if (d3.event.selection) {
const [[x0, y0], [x1, y1]] = d3.event.selection;
value = data.filter(d => x0 <= x(d[xField]) && x(d[xField]) < x1 && y0 <= y(d[yField]) && y(d[yField]) < y1);
}
svg.property("value", value).dispatch("input");
}
return svg.node();
}