Auto-generate analytics report when URL contains all required parameters
All checks were successful
Deployment / deploy-docker (push) Successful in 11s

This commit is contained in:
Melchior Reimers
2026-01-25 14:48:57 +01:00
parent 5a29c7ede2
commit 78daa39ad4

View File

@@ -599,12 +599,12 @@
animation: { duration: 800, easing: 'easeOutQuart' }, animation: { duration: 800, easing: 'easeOutQuart' },
scales: { scales: {
y: { y: {
stacked: (currentChartType === 'bar'), stacked: false,
grid: { color: 'rgba(255,255,255,0.05)' }, grid: { color: 'rgba(255,255,255,0.05)' },
ticks: { color: '#64748b' } ticks: { color: '#64748b' }
}, },
x: { x: {
stacked: (currentChartType === 'bar'), stacked: false,
grid: { display: false }, grid: { display: false },
ticks: { color: '#64748b' } ticks: { color: '#64748b' }
} }
@@ -752,6 +752,9 @@
}); });
if (x && y && time) renderAnalyticsReport(); if (x && y && time) renderAnalyticsReport();
}, 800); }, 800);
} else if (x && y && time) {
// Auto-generate report even without ISIN filters
setTimeout(() => renderAnalyticsReport(), 800);
} }
} }