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

Function renderAll

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

Source from the content-addressed store, hash-verified

187 * @return {undefined}
188 */
189export 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

Callers 1

renderGroupMethod · 0.90

Calls 2

listMethod · 0.80
renderMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…