(group)
| 171 | * @return {undefined} |
| 172 | */ |
| 173 | export const refocusAll = function (group) { |
| 174 | const charts = chartRegistry.list(group); |
| 175 | for (let i = 0; i < charts.length; ++i) { |
| 176 | if (charts[i].focus) { |
| 177 | charts[i].focus(); |
| 178 | } |
| 179 | } |
| 180 | }; |
| 181 | |
| 182 | /** |
| 183 | * Re-render all charts belong to the given chart group. If the chart group is not given then only |