How to get Series ID? The API has only name and data, etc. But I do not have an identifier. How can I get an identifier from a series?
I use the following method to loop all the rows in a chart.
$(chart.series).each(function(i, serie){
EDIT:
I found that I can get the identifier using the following path. I'm not sure if this is the right way?
$(chart.series).each(function(i, serie){ console.log(serie.options.id); });
user503853
source share