好神奇啊,有好好的数组不用好好的对象不用居然这样来拼字符串
$(function () {
    var growth = new Array();
    for(var i=0;i < 1000; i++){
            var x = i; 
            var y = 52+i;
            growth.push({name:x,y:y});
    }
    $('#container').highcharts({
        xAxis: {
            minPadding: 0.05,
            maxPadding: 0.05
        },
        series: [{
            data: growth
        }]
    });
});

解决方案 »

  1.   

    Highcharts Error #12
    Highcharts expects point configuration to be numbers or arrays in turbo mode
    This error occurs if the series.data option contains object configurations and the number of points exceeds the turboThreshold. It can be fixed by either setting the turboThreshold option to a higher value, or changing your point configurations to numbers or arrays. See turboThreshold. 
      

  2.   

    Highcharts 默认配置的是1000,至于要怎么处理自己研究一下源码