function DivergingBarChart(data, {
x = d => d,
y = (d, i) => i,
title,
marginTop = 30,
marginRight = 40,
marginBottom = 10,
marginLeft = 40,
width = 640,
height,
xType = d3.scaleLinear,
xDomain,
xRange = [marginLeft, width - marginRight],
xFormat,
xLabel,
yPadding = 0.1,
yDomain,
yRange,
colors = d3.schemePiYG[3]
} = {}) {
const X = d3.map(data, x);
const Y = d3.map(data, y);
if (xDomain === undefined) xDomain = d3.extent(X);
if (yDomain === undefined) yDomain = Y;
yDomain = new d3.InternSet(yDomain);
const I = d3.range(X.length).filter(i => yDomain.has(Y[i]));
const YX = d3.rollup(I, ([i]) => X[i], i => Y[i]);
// Compute the default height.
if (height === undefined) height = Math.ceil((yDomain.size + yPadding) * 25) + marginTop + marginBottom;
if (yRange === undefined) yRange = [marginTop, height - marginBottom];
// Construct scales, axes, and formats.
const xScale = xType(xDomain, xRange);
const yScale = d3.scaleBand(yDomain, yRange).padding(yPadding);
const xAxis = d3.axisTop(xScale).ticks(width / 80, xFormat);
const yAxis = d3.axisLeft(yScale).tickSize(0).tickPadding(6);
const format = xScale.tickFormat(100, xFormat);
// Compute titles.
if (title === undefined) {
title = i => `${Y[i]}\n${format(X[i])}`;
} else if (title !== null) {
const O = d3.map(data, d => d);
const T = title;
title = i => T(O[i], i, data);
}
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height)
.attr("viewBox", [0, 0, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");
svg.append("g")
.attr("transform", `translate(0,${marginTop})`)
.call(xAxis)
.call(g => g.select(".domain").remove())
.call(g => g.selectAll(".tick line").clone()
.attr("y2", height - marginTop - marginBottom)
.attr("stroke-opacity", 0.1))
.call(g => g.append("text")
.attr("x", xScale(0))
.attr("y", -22)
.attr("fill", "currentColor")
.attr("text-anchor", "center")
.text(xLabel));
const bar = svg.append("g")
.selectAll("rect")
.data(I)
.join("rect")
.attr("fill", i => colors[X[i] > 0 ? colors.length - 1 : 0])
.attr("x", i => Math.min(xScale(0), xScale(X[i])))
.attr("y", i => yScale(Y[i]))
.attr("width", i => Math.abs(xScale(X[i]) - xScale(0)))
.attr("height", yScale.bandwidth());
if (title) bar.append("title")
.text(title);
svg.append("g")
.attr("text-anchor", "end")
.attr("font-family", "sans-serif")
.attr("font-size", 10)
.selectAll("text")
.data(I)
.join("text")
.attr("text-anchor", i => X[i] < 0 ? "end" : "start")
.attr("x", i => xScale(X[i]) + Math.sign(X[i] - 0) * 4)
.attr("y", i => yScale(Y[i]) + yScale.bandwidth() / 2)
.attr("dy", "0.35em")
.text(i => format(X[i]));
svg.append("g")
.attr("transform", `translate(${xScale(0)},0)`)
.call(yAxis)
.call(g => g.selectAll(".tick text")
.filter(y => YX.get(y) < 0)
.attr("text-anchor", "start")
.attr("x", 6));
return svg.node();
}