From 4522b8fa404663e538fa599e15e59f5054e7757f Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Fri, 18 Sep 2026 13:54:33 +0000 Subject: [PATCH] Analytics: stronger chart fills, line specimen for the day legend Area and bar fills at 0.6 opacity (were a near-invisible 0.15); the day view's 'Last 24 hours' legend entry uses the same full-opacity accent line as the other entries instead of a translucent bar swatch. --- frontend/src/VisitorCharts.vue | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/frontend/src/VisitorCharts.vue b/frontend/src/VisitorCharts.vue index 6e2b93d..46e640a 100644 --- a/frontend/src/VisitorCharts.vue +++ b/frontend/src/VisitorCharts.vue @@ -123,19 +123,13 @@ const viewChart = computed(() => buildChart(withTypical(allViews.value), now.val class="yaxis-label">{{ axisLabel(c.chart.unit, c.ylabel) }} {{ t.label }} - + - - + + {{ c.chart.bars ? 'Last 24 hours' : c.chart.series[0].label }} buildChart(withTypical(allViews.value), now.val .chart .area { fill: var(--accent); - opacity: 0.15; + opacity: 0.6; } .chart .bar { fill: var(--accent); - opacity: 0.15; + opacity: 0.6; } .chart .line {