I have a requirement where I get chunks of data asynchronously. When i get the first chunk, I create a new series but for all other chunks. I want to add the chunk of data to the existing series. I can see in Highcharts documentation, there is addpoint method, but it adds each point and this would take a long time. Is there a way to add a chunk of data to the series in one go. In my case each chunk of data is an array of 2500 data points.
Thanks in advance.