* @protected
(scale, parsed, mode)
| 591 | * @protected |
| 592 | */ |
| 593 | applyStack(scale, parsed, mode) { |
| 594 | const chart = this.chart; |
| 595 | const meta = this._cachedMeta; |
| 596 | const value = parsed[scale.axis]; |
| 597 | const stack = { |
| 598 | keys: getSortedDatasetIndices(chart, true), |
| 599 | values: parsed._stacks[scale.axis]._visualValues |
| 600 | }; |
| 601 | return applyStack(stack, value, meta.index, {mode}); |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * @protected |
no test coverage detected