//If in chart's click event handler
this.series[i].currentDataGrouping.unitName
//If in series's event handler
this.currentDataGrouping.unitName
HOW TO FIREBUG YOUR WAY TO THE SOLUTION
Highchart has a nice readable object graph that tells you most the things without needing documentation. I strongly recommend firebug or developer tools of whichever browser you use
All that was needed was to set a breakpoint in the click handler, look through the locals, and see what makes sense for the problem in hand, and there you go.
You have (From the series's click handler) this.currentDataGrouping.unitName
.
Now ain't that intutive?!!
Due apologies if I sounded rude, but I believe in empowering people in ways that help them solve their own problems the next time