score:2

Accepted answer

you can retrieve the data this way:

$('#button').click(function () {
    var chart = $('#container').highcharts();
    data = chart.series[0].data;
    $(chart.series[0].data).each(function (index, element) {            
        alert(this.y);
    });
});

working demo: http://jsfiddle.net/erzqs/1/


Related Query

More Query from same tag