Plot.plot({
height: 400,
width: 400,
y: {
label: "Pourcentage (%)",
},
facet: {
data: dataset,
x: d => d.x,
marginLeft: 30,
inset: 10,
},
color: {
range: colorscale,
domain: domains,
},
marks: [
Plot.barY(dataset, {y: "value", fill: "cat"}),
Plot.text(dataset, {y: "textPosition", text: d => `${d.value}%`, fill: "white", fontWeight: 900}),
Plot.ruleY([0, 100]),
]
})