I am building a line chart and I would like, when I click on a point of the line, to display a popup containing some data about this point. The issue I try to resolve is to
I had the same problem ... if I understand correctly. My solution is this, to get the id of the series ... See if it helps ...
plotOptions{ series:{ cursor: 'pointer', events: { click: function(event) { console.log(event.point.series.userOptions.id); } } }