score:5

Accepted answer

the event has the point attached to it. so, you can do something like this:

           click: function (event) {
                var str = event.point.series.yaxis.categories[event.point.y] + ',' +
                    event.point.series.xaxis.categories[event.point.x]
                alert(str);
            }

http://jsfiddle.net/blaird/3uwaa/26/


Related Query

More Query from same tag