(this: DataDiffer<DiffGroupContext>, oldIndex: number)
| 1476 | } |
| 1477 | |
| 1478 | function processRemove(this: DataDiffer<DiffGroupContext>, oldIndex: number): void { |
| 1479 | const context = this.context; |
| 1480 | const child = context.oldChildren[oldIndex]; |
| 1481 | child && applyLeaveTransition(child, customInnerStore(child).option, context.seriesModel); |
| 1482 | } |
| 1483 | |
| 1484 | /** |
| 1485 | * @return SVG Path data. |
nothing calls this directly
no test coverage detected
searching dependent graphs…