I am trying to reload the data for a Highcharts chart via JSON based on a button click elsewhere in the page. Initially I would like to display a default set of data (spendi
If you are using push to push the data to the option.series dynamically .. just use
options.series = [];
to clear it.
options.series = []; $("#change").click(function(){ }