score:0

Accepted answer

You need to Update your chart.

  1. You can do a simple chart update which updates the chart information (Chart Update API)

    chart.update({
        title: {
           text: 'new text'
        }
    })
    

    JS fiddle of Update Charts in action.

  2. You can do a series update which updates the chart data itself. (Series Update API)

    // if data is in json format, convert it to an array
    chart.series[0].update({
        data: [...]  //pass your new data here
    });
    

    JS Fiddle for Series Update.

Ref: JS Fiddle Ref


Related Query

More Query from same tag