2014-12-10 290 views
0

我一直無法讓我的地圖顯示任何數據;它只是呈現空白,並在控制檯中有一個錯誤「Uncaught TypeError:無法讀取未定義的屬性長度」。我相信我使用的Highstock和Highmaps版本是兼容的,所以我不認爲這是問題,但我可能是錯的。Highstock + Highmaps無法渲染

Click here for the fiddle

JS(geo_data與AJAX正在取出)

$('#map').highcharts('Map', { 
    title: { 
     text: 'Installs Map' 
    }, 
    colorAxis: { 
     min: 0 
    }, 
    series: [{ 
     data: geo_data, 
     mapData: Highcharts.maps['custom/world'], 
     joinBy: ['hc-key', 'country_id'], 
     name: 'Installs', 
     states: { 
      hover: { 
       color: '#BADA55' 
      } 
     } 
    }], 
    credits: { 
     enabled: false 
    } 
}); 

回答