(el: Element)
| 169 | } |
| 170 | } |
| 171 | function stopAnimation(el: Element) { |
| 172 | el.stopAnimation(); |
| 173 | if (el.isGroup) { |
| 174 | el.traverse(child => { |
| 175 | child.stopAnimation(); |
| 176 | }); |
| 177 | } |
| 178 | } |
| 179 | function animateElementStyles(el: Element, dataIndex: number, seriesModel: SeriesModel) { |
| 180 | const animationConfig = getAnimationConfig('update', seriesModel, dataIndex); |
| 181 | animationConfig && el.traverse(child => { |
no outgoing calls
no test coverage detected
searching dependent graphs…