(group)
| 187 | * @return {undefined} |
| 188 | */ |
| 189 | export const renderAll = function (group) { |
| 190 | const charts = chartRegistry.list(group); |
| 191 | for (let i = 0; i < charts.length; ++i) { |
| 192 | charts[i].render(); |
| 193 | } |
| 194 | |
| 195 | if (config._renderlet !== null) { |
| 196 | config._renderlet(group); |
| 197 | } |
| 198 | }; |
| 199 | |
| 200 | /** |
| 201 | * Redraw all charts belong to the given chart group. If the chart group is not given then only charts |
no test coverage detected
searching dependent graphs…