I am using a custom map in highmaps. My map is rendering well and when I try to bind the points to data it works. My problem is I cannot read the point properties or attach events to any point. The error on the console is that this.point.properties is undefined. https://jsfiddle.net/mwendakith/0tyfph44/
plotOptions: {
map: {
allAreas: false,
dataLabels: {
enabled : true,
formatter: function(){
if(this.point.properties){
return this.point.properties['name'];
}
}
},
},
},