I am trying to display highmap with bubbles with coordinates as latitude and longitude, but it doesnt show up. Could you please tell me what I am doing wrong(my config object below). Thank you very much for help!
$scope.ChartConfig = {
options: {
legend: {
enabled: false
},
plotOptions: {
map: {
mapData: Highcharts.maps['custom/world']
}
}
},
chartType: 'map',
title: {
text: ''
},
series: [{
type: 'mapbubble',
name: 'Cities',
mapData: Highcharts.maps['custom/world'],
color: '#E0E0E0',
data: [{
z: 1000,
name: 'London',
lat: 26.5727,
lon: 73.8390
}]
}]
};