score:2

Accepted answer

Switch to using a point object instead of an array for the data.

    drilldown: {
        series: [{
            id: 'animals',
            data: [{name: 'Cats',
                    y: 4, 
                    otherValue: 100},

In the formatter your extra value will be under:

this.point.otherValue

Fiddle example.


Related Query

More Query from same tag