(chart)
| 172 | } |
| 173 | |
| 174 | running(chart) { |
| 175 | if (!this._running) { |
| 176 | return false; |
| 177 | } |
| 178 | const anims = this._charts.get(chart); |
| 179 | if (!anims || !anims.running || !anims.items.length) { |
| 180 | return false; |
| 181 | } |
| 182 | return true; |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Stop all animations for the chart |
no test coverage detected