()
| 613 | } |
| 614 | |
| 615 | private disposeAllCharts(): void { |
| 616 | for (const chart of this.chartInstances) { |
| 617 | if (!chart.isDisposed()) { |
| 618 | chart.dispose() |
| 619 | } |
| 620 | } |
| 621 | this.chartInstances.clear() |
| 622 | } |
| 623 | |
| 624 | private createListSlideItem( |
| 625 | index: number, |
no test coverage detected