* Update graphic element properties with or without animation according to the * configuration in series. * * Caution: this method will stop previous animation. * So do not use this method to one element twice before * animation starts, unless you know what you are doing. * * @param {module:z
(el, props, animatableModel, dataIndex, cb)
| 17955 | * }, seriesModel, function () { console.log('Animation done!'); }); |
| 17956 | */ |
| 17957 | function updateProps(el, props, animatableModel, dataIndex, cb) { |
| 17958 | animateOrSetProps(true, el, props, animatableModel, dataIndex, cb); |
| 17959 | } |
| 17960 | |
| 17961 | /** |
| 17962 | * Init graphic element properties with or without animation according to the |
no test coverage detected