(data: SeriesData, targetDim: string)
| 231 | } |
| 232 | |
| 233 | export function getStackedDimension(data: SeriesData, targetDim: string): DimensionName { |
| 234 | return isDimensionStacked(data, targetDim) |
| 235 | ? data.getCalculationInfo('stackResultDimension') |
| 236 | : targetDim; |
| 237 | } |
no test coverage detected
searching dependent graphs…