From 78daa39ad478161f1a4866186da3037235a43754 Mon Sep 17 00:00:00 2001 From: Melchior Reimers Date: Sun, 25 Jan 2026 14:48:57 +0100 Subject: [PATCH] Auto-generate analytics report when URL contains all required parameters --- dashboard/public/index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dashboard/public/index.html b/dashboard/public/index.html index cf2a361..788ae20 100644 --- a/dashboard/public/index.html +++ b/dashboard/public/index.html @@ -599,12 +599,12 @@ animation: { duration: 800, easing: 'easeOutQuart' }, scales: { y: { - stacked: (currentChartType === 'bar'), + stacked: false, grid: { color: 'rgba(255,255,255,0.05)' }, ticks: { color: '#64748b' } }, x: { - stacked: (currentChartType === 'bar'), + stacked: false, grid: { display: false }, ticks: { color: '#64748b' } } @@ -752,6 +752,9 @@ }); if (x && y && time) renderAnalyticsReport(); }, 800); + } else if (x && y && time) { + // Auto-generate report even without ISIN filters + setTimeout(() => renderAnalyticsReport(), 800); } }