score:1

Accepted answer

Yes it is possible, you can achieve it by catching afterSetExtremes function.

http://jsfiddle.net/JzEnV/

 events:{
                afterSetExtremes:function(){
                    alert(this.min);
                    alert(this.max);
                }
            }

If you would like to get dates, then you can use dateFormat() http://api.highcharts.com/highcharts#Highcharts.dateFormat()


Related Query

More Query from same tag