米国向けの HighMap を作成しています。コードを実行しても、何も出力されません。どうしてこれなの?
$(関数 () {
$.getJSON('http://localhost:52149/Scripts/BrokerInfo.json', function (data) {
$('#container').highcharts('Map', {
chart : {
borderWidth : 1
},
title : {
text : 'Broker Zonal Assignment'
},
mapNavigation: {
enabled: true
},
series : [{
animation: {
duration: 1000
},
data : data,
mapData: Highcharts.maps['countries/us/us-all'],
joinBy: ['State', 'State'],
dataLabels: {
enabled: true,
color: 'white',
format: '{point.State}'
},
name: 'Vice President',
tooltip: {
pointFormat: '{point.state}: {point.VicePresident}'
}
}]
});
});