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);
}
}