I would like to create a (percent) score histogram with average and median marked, something like this:
On my x axis the domain is [0, 5, 10, …, 95, 100] and when I add my ruleX average and median:
marks: [
Plot.axisX({ fontSize: 16 }),
Plot.axisY({ fontSize: 16 }),
Plot.ruleY([0]),
Plot.ruleX([+response.data.stats.percAverage], {
stroke: 'red',
strokeDasharray: '4',
title: 'Average',
}),
Plot.ruleX([+response.data.stats.percMedian], {
stroke: 'green',
strokeDasharray: '2,2',
title: 'Median',
}),
Plot.barY(data, {
x: 'x',
y: 'y',
fill: 'rgb(160, 72, 253)', // Interior color
// stroke: 'white', // Outline color
// strokeWidth: 1.5, // Outline th
title: (d) => `${props.xLabel}: ${d.x}\n${props.yLabel}: ${d.y}`,
tip: true,
}),
],
they are not drawn unless they coincide with the domain category (eg. average 55 will be show, but average 56 will not), like in this image:
How can I show these numerical values (dashed lines) over my bars?