Is there an optimized way to add multiple series dynamically to an already rendered line chart with existing series?
So far I can think of two options:
1)Calling Chart.addSeries(graphSeries) n times.
I am currently using this approach, but it's slow for multiple series
2)Reinitialize the chart from the JSON object after adding the new series to the JSON object
Chart = new Highcharts.Chart(graphData);
This however means that the entire chart has to be regenerated every time.
Is there another way to bulk add new series to a chart?