webrplt = Plot.plot({
style: {
background: "#001e38",
color: "#c6cdd7",
padding: "30px"
},
inset: 10,
marginLeft: 50,
caption: "Data from AT&T (1961) The World's Telephones",
x: {
label: null,
type: "band"
},
y: {
label: "Number of ☎️ (K)",
grid: true
},
marks: [
Plot.barY(
worldPhones.filter((d) => d.region === "Europe"),
{ x: "year", y: "phones", fill: "#4a6d88" }
),
Plot.ruleY([0])
]
})