score:2

If you want to reanimate the same series, you will want to remove your current one and redraw it as a new series.

 $('#button').click(function() {
    $("contain").highcharts().series[0].remove();
    $("contain").highcharts().addSeries({
       name:"filter",
       data: result} );

});

Related Query

More Query from same tag