(
seriesData: StackSeriesData<BoxType>,
renderOptions: RenderOptions
)
| 663 | } |
| 664 | |
| 665 | getTotalDataLabels( |
| 666 | seriesData: StackSeriesData<BoxType>, |
| 667 | renderOptions: RenderOptions |
| 668 | ): RectDataLabel[] { |
| 669 | const { stackData, stack } = seriesData; |
| 670 | |
| 671 | if (isPercentStack(stack)) { |
| 672 | return []; |
| 673 | } |
| 674 | |
| 675 | return isGroupStack(stackData) |
| 676 | ? this.makeGroupTotalDataLabels(seriesData, renderOptions) |
| 677 | : this.makeTotalDataLabels(stackData, renderOptions); |
| 678 | } |
| 679 | |
| 680 | makeGroupTotalDataLabels( |
| 681 | stackSeries: StackSeriesData<BoxType>, |
no test coverage detected