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' },
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user