We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94b1c9 commit 8a0dfcbCopy full SHA for 8a0dfcb
js/render-facade.js
@@ -132,7 +132,10 @@ var vizClipboard1=null;
132
$('div.visualizer-front:not(.viz-facade-loaded):not(.visualizer-lazy):not(.visualizer-cw-error):empty').each(function(index, element){
133
if ( $(element).is(':visible') ) {
134
var id = $(element).addClass('viz-facade-loaded').attr('id');
135
- showChart(id);
+ setTimeout(function(){
136
+ // Add a short delay between each chart to avoid overloading the browser event loop.
137
+ showChart(id);
138
+ }, ( index + 1 ) * 100);
139
}
140
});
141
0 commit comments