* @private
(chart)
| 110 | * @private |
| 111 | */ |
| 112 | _getAnims(chart) { |
| 113 | const charts = this._charts; |
| 114 | let anims = charts.get(chart); |
| 115 | if (!anims) { |
| 116 | anims = { |
| 117 | running: false, |
| 118 | initial: true, |
| 119 | items: [], |
| 120 | listeners: { |
| 121 | complete: [], |
| 122 | progress: [] |
| 123 | } |
| 124 | }; |
| 125 | charts.set(chart, anims); |
| 126 | } |
| 127 | return anims; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * @param {Chart} chart |
no test coverage detected