chart = {
const container = d3.create("div").attr("class", "scroll-container");
const narrativeContainer = container
.append("div")
.attr("class", "narrative-container")
.on("scroll", () => {
const totalHeight = narrativeContainer.node().getBoundingClientRect().top;
const offset = narrative.node().getBoundingClientRect().y;
const section = Math.floor((totalHeight - offset + 10) / sectionHeight);
update(section);
});
const narrative = narrativeContainer.append("div").attr("class", "narrative");
narrative
.selectAll(".section")
.data(descriptions)
.join("div")
.attr("class", "section")
.append("text")
.text(d => d);
const vis = container.append("div").attr("class", "vis-container");
const svg = vis
.append("svg")
.attr("width", chartWidth)
.attr("height", height);
const xAxis = svg
.append("g")
.attr("class", "xaxis")
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(x));
const yAxis = svg
.append("g")
.attr("class", "yaxis")
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(y));
const title = svg
.append("text")
.attr("class", "chart_title")
.attr("transform", `translate(${width / 2},15)`)
.text("")
.style("text-anchor", "middle");
const annotationG = svg.append("g").attr("class", "annotation-group");
const update = (section, initialBuild = false) => {
if (section === mutable currentSection && initialBuild === false) return;
mutable currentSection = section;
let color = '';
let input_state = "";
switch (section) {
case 0:
input_state = "Iowa";
color = "gray";
break;
case 1:
input_state = "Mississippi";
color = "pink";
break;
case 2:
input_state = "Maine";
color = "green";
break;
case 3:
input_state = "California";
color = "black";
break;
default:
input_state = "Utah";
color = "blue";
break;
}
const data = all_data.filter(d => d.name == input_state);
x.domain([0, d3.max(data, d => d.pct)]);
svg
.select(".xaxis")
.transition()
.duration(500)
.call(d3.axisBottom(x).tickFormat(d3.format(".0%")));
svg
.select(".yaxis")
.transition()
.duration(500)
.call(d3.axisLeft(y).tickFormat(customTickFormatter));
const rects = svg.selectAll("rect").data(data, d => d.group);
rects.join(
enter =>
enter
.append("rect")
.attr("x", x(0))
.attr("y", d => y(d.group))
.attr("height", d => y.bandwidth())
.attr("width", d => {
return x(d.pct) - x(0);
}),
update =>
update
.transition()
.duration(500)
.attr("width", d => x(d.pct) - x(0))
);
title.text(
`Percentage of people in ${input_state} living in each income bracket`
);
const annotations = [
{
note: {
bgPadding: 20,
title: "",
label: `Percentage of people living below 10K is ${d3.format(".0%")(
data[0].pct
)}`
},
x: x(data[0].pct),
y: y(data[0].group) + y.bandwidth() / 2,
color: "red",
className: "show-bg",
dy: 0,
dx: 100,
subject: { radius: 50, radiusPadding: 10 }
}
];
const makeAnnotations = d3_annotation
.annotation()
.editMode(true)
.type(d3_annotation.annotationLabel)
.annotations(annotations);
annotationG
.raise()
.call(makeAnnotations)
.attr("class", "annotation-group")
.style("font-size", "10px");
};
update(0, true);
return container.node();
}