score:2

Accepted answer

you can remove series from options, and add all of them in load event. demo: http://jsfiddle.net/qc8bs/

$('#container').highcharts({

    chart: {
        type: 'bubble',
        zoomtype: 'xy',
        events: {
            load: function () {
                var chart = this;

                function addseries() {
                    if (s.length > 0) {
                        chart.addseries(s[0]);
                        settimeout(addseries, 1000);
                        s.splice(0, 1);
                    }
                }

                addseries();
            }
        }
    },

    title: {
        text: 'highcharts bubbles'
    },

    series: []

});

Related Query

More Query from same tag