Auto-generate analytics report when URL contains all required parameters
All checks were successful
Deployment / deploy-docker (push) Successful in 11s
All checks were successful
Deployment / deploy-docker (push) Successful in 11s
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user