(dataIndex, animationModel, el)
| 42559 | } |
| 42560 | |
| 42561 | function removeSector(dataIndex, animationModel, el) { |
| 42562 | // Not show text when animating |
| 42563 | el.style.text = null; |
| 42564 | updateProps(el, { |
| 42565 | shape: { |
| 42566 | r: el.shape.r0 |
| 42567 | } |
| 42568 | }, animationModel, dataIndex, function () { |
| 42569 | el.parent && el.parent.remove(el); |
| 42570 | }); |
| 42571 | } |
| 42572 | |
| 42573 | var getLayout = { |
| 42574 | // itemModel is only used to get borderWidth, which is not needed |
no test coverage detected