MCPcopy Create free account
hub / github.com/apache/echarts / eachItemGraphicEl

Method eachItemGraphicEl

src/data/SeriesData.ts:1331–1340  ·  view source on GitHub ↗
(
        cb: (this: Ctx, el: Element, idx: number) => void,
        context?: Ctx
    )

Source from the content-addressed store, hash-verified

1329 }
1330
1331 eachItemGraphicEl<Ctx = unknown>(
1332 cb: (this: Ctx, el: Element, idx: number) => void,
1333 context?: Ctx
1334 ): void {
1335 zrUtil.each(this._graphicEls, function (el, idx) {
1336 if (el) {
1337 cb && cb.call(context, el, idx);
1338 }
1339 });
1340 }
1341
1342 /**
1343 * Shallow clone a new list except visual and layout properties, and graph elements.

Callers 15

renderMethod · 0.80
updateLayoutMethod · 0.80
removeMethod · 0.80
_clearMethod · 0.80
removeMethod · 0.80
removeMethod · 0.80
renderMethod · 0.80
removeMethod · 0.80
renderMethod · 0.80

Calls 1

eachMethod · 0.45

Tested by

no test coverage detected