()
| 417 | } |
| 418 | |
| 419 | function disposeChart(): void { |
| 420 | // Clean up performance subscription |
| 421 | if (state.performanceUnsubscribe) { |
| 422 | state.performanceUnsubscribe(); |
| 423 | state.performanceUnsubscribe = null; |
| 424 | } |
| 425 | |
| 426 | // Dispose chart |
| 427 | if (state.chart) { |
| 428 | state.chart.dispose(); |
| 429 | state.chart = null; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | // ============================================================================ |
| 434 | // Performance Metrics Display |
no test coverage detected