(axisCmptIdx: ComponentModel['componentIndex'])
| 137 | indexMap: boolean[] = []; |
| 138 | |
| 139 | add(axisCmptIdx: ComponentModel['componentIndex']): void { |
| 140 | // Remove duplication. |
| 141 | if (!this.indexMap[axisCmptIdx]) { |
| 142 | this.indexList.push(axisCmptIdx); |
| 143 | this.indexMap[axisCmptIdx] = true; |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | export type DataZoomTargetAxisInfoMap = HashMap<DataZoomAxisInfo, DataZoomAxisDimension>; |
| 148 |
no outgoing calls
no test coverage detected