From abe4cb6845985ea66f77305233a176e706593714 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 5 Jan 2026 13:40:44 -0600 Subject: [PATCH] Make traffic bar chart bars connected with no gaps --- assets/js/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/js/app.js b/assets/js/app.js index 8b9bf377..761cedb2 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -149,6 +149,9 @@ const SensorChart = { options: { responsive: true, maintainAspectRatio: false, + // Make bars connect with no gaps for traffic charts + barPercentage: chartType === 'bar' ? 1.0 : undefined, + categoryPercentage: chartType === 'bar' ? 1.0 : undefined, interaction: { mode: 'index', intersect: false,