(
group: graphicUtil.Group,
child: Element,
seriesModel: SeriesModel
)
| 1415 | } |
| 1416 | |
| 1417 | function removeChildFromGroup( |
| 1418 | group: graphicUtil.Group, |
| 1419 | child: Element, |
| 1420 | seriesModel: SeriesModel |
| 1421 | ) { |
| 1422 | // Do not support leave elements that are not mentioned in the latest |
| 1423 | // `renderItem` return. Otherwise users may not have a clear and simple |
| 1424 | // concept that how to control all of the elements. |
| 1425 | child && applyLeaveTransition( |
| 1426 | child, |
| 1427 | customInnerStore(group).option, |
| 1428 | seriesModel |
| 1429 | ); |
| 1430 | } |
| 1431 | |
| 1432 | type DiffGroupContext = { |
| 1433 | api: ExtensionAPI; |
no test coverage detected
searching dependent graphs…