score:12

Accepted answer

You need to catch the event. See the chart.events.drillup API doc. To get the series and points in the series you would do something like:

    events: {
        drillup: function (e) {
            console.log(this);
            console.log(this.options.series[0].name);
            console.log(this.options.series[0].data[0].name);
        }
    }

Since you did not state which series or points you wanted this is the most general method.

Link to the updated working FIDDLE

score:1

chart: {
         type: 'column',
         events: {
            drillup: function (e) {
                   alert(e.seriesOptions.name);
            }
        }     
    }

From the below line,

e.seriesOptions.name

You will get the series name, which you are loading, by clicking that back button(drill up button).


Related Query

More Query from same tag