How to generate highcharts chart from multiple local json files
问题 I'm trying to construct a highcharts barchart using data from multiple locally held json files and having a bit of trouble. For simplicity's sake I want to loop through all files, do a search for a particular string and use the count as the data for my graph. I've went about it like so: options.series[0].name = 'Test'; options.series[0].data = []; //Loop over the different local files and do a search count in each var localfiles = new Array('localfile1.json', 'localfile2.json'); for (var i=0;