// Prepare demo data
// Data is joined to map using value of 'hc-key' property by default.
// See API docs for 'joinBy' for more info on linking data and map.
var data = [
['sa-tb', 1],
];
// Create the chart
Highcharts.mapChart('container', {
chart: {
map: 'countries/sa/sa-all'
},
title: {
text: ' '
},
subtitle: {
text: ''
},
mapNavigation: {
enabled: false,
buttonOptions: {
verticalAlign: 'bottom'
}
},
colorAxis: {
min: 0
},
series: [{
data: data,
name: '',
color: '#bada55'
,
dataLabels: {
enabled: false,
format: '{point.name}'
},
}],
tooltip: {
enabled: false,
},
});