MCPcopy
hub / github.com/dc-js/dc.js / refocusAll

Function refocusAll

src/core/chart-registry.js:173–180  ·  view source on GitHub ↗
(group)

Source from the content-addressed store, hash-verified

171 * @return {undefined}
172 */
173export 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

Callers

nothing calls this directly

Calls 2

listMethod · 0.80
focusMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…