$.each only shows one series highcharts
问题 Focusing in this question: php-json-highcharts-load-database-result The answer was to do the follow each : $.getJSON('ajax/calc.ajax.php', function(data) { var series = { // <-------------------- create just one series object type: 'pie', data: [] //data array for new series }; $.each(data, function(key, value) { series.data.push([key, value[0]]); }); options.series.push(series); // <-------- pushing series object var chart = new Highcharts.Chart(options); }); This works using pie charts, and