(
cb: (this: Ctx, el: Element, idx: number) => void,
context?: Ctx
)
| 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. |
no test coverage detected