score:6

Accepted answer

the value of the stack option can be found in series.options.stack.

for your code it would look like this (jsfiddle):

tooltip: {
    formatter: function () {
        return '<b>' + this.x + '</b><br/>' +
            this.series.name + ': ' + this.y + '<br/>' +
            'total: ' + this.point.stacktotal + ' stack: ' + this.series.options.stack;
    }
}

Related Query

More Query from same tag