diff --git a/packages/frontend/src/scripts/chart-vline.ts b/packages/frontend/src/scripts/chart-vline.ts
index 8e3c4436b29834d9eebdcee057f1d9fff4cf1e19..10021583e054db09688a03fc7e80788df9efdeab 100644
--- a/packages/frontend/src/scripts/chart-vline.ts
+++ b/packages/frontend/src/scripts/chart-vline.ts
@@ -2,9 +2,9 @@ export const chartVLine = (vLineColor: string) => ({
 	id: 'vLine',
 	beforeDraw(chart, args, options) {
 		if (chart.tooltip?._active?.length) {
-			const activePoint = chart.tooltip._active[0];
 			const ctx = chart.ctx;
-			const x = activePoint.element.x;
+			const xs = chart.tooltip._active.map(a => a.element.x);
+			const x = xs.reduce((a, b) => a + b, 0) / xs.length;
 			const topY = chart.scales.y.top;
 			const bottomY = chart.scales.y.bottom;