()
| 150 | } |
| 151 | |
| 152 | function resizeChart() { |
| 153 | if (window.flamegraphChart && window.flamegraphData) { |
| 154 | const chartArea = document.querySelector('.chart-area'); |
| 155 | if (chartArea) { |
| 156 | window.flamegraphChart.width(chartArea.clientWidth - 32); |
| 157 | d3.select("#chart").datum(window.flamegraphData).call(window.flamegraphChart); |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | function toggleSection(sectionId) { |
| 163 | const section = document.getElementById(sectionId); |
no test coverage detected
searching dependent graphs…