demo: change plain fill to red to trigger visual regression

This commit is contained in:
Ullrich Schäfer 2026-05-10 19:59:58 +02:00
parent 2829ec2137
commit 4028d0a901
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9

View file

@ -179,7 +179,7 @@ export function drawElevationChart(
}
ctx.lineTo(PADDING.left + chartW, PADDING.top + chartH);
ctx.closePath();
ctx.fillStyle = "rgba(37, 99, 235, 0.15)";
ctx.fillStyle = "rgba(220, 38, 38, 0.15)"; // demo: red fill to trigger visual regression
ctx.fill();
ctx.beginPath();