MCPcopy
hub / github.com/apache/echarts / eachRawSeries

Method eachRawSeries

src/model/Global.ts:814–821  ·  view source on GitHub ↗

* Iterate raw series before filtered.

(
        cb: (this: T, series: SeriesModel, rawSeriesIndex: number) => void,
        context?: T
    )

Source from the content-addressed store, hash-verified

812 * Iterate raw series before filtered.
813 */
814 eachRawSeries<T>(
815 cb: (this: T, series: SeriesModel, rawSeriesIndex: number) => void,
816 context?: T
817 ): void {
818 each(this._componentsMap.get('series'), function (series) {
819 series && cb.call(context, series, series.componentIndex);
820 });
821 }
822
823 /**
824 * After filtering, series may be different.

Callers 5

renderInnerMethod · 0.80
_updateDataMethod · 0.80
groupSeriesFunction · 0.80
decalVisualFunction · 0.80

Calls 2

eachFunction · 0.50
getMethod · 0.45

Tested by

no test coverage detected