* @param {module:echarts/data/List} data * @param {string} targetDim * @param {string} [stackedByDim] If not input this parameter, check whether * stacked by index. * @return {string} dimension
(data, targetDim)
| 32718 | * @return {string} dimension |
| 32719 | */ |
| 32720 | function getStackedDimension(data, targetDim) { |
| 32721 | return isDimensionStacked(data, targetDim) |
| 32722 | ? data.getCalculationInfo('stackResultDimension') |
| 32723 | : targetDim; |
| 32724 | } |
| 32725 | |
| 32726 | /* |
| 32727 | * Licensed to the Apache Software Foundation (ASF) under one |
no test coverage detected