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

Function getRawSourceDataCounter

src/data/helper/dataProvider.ts:428–436  ·  view source on GitHub ↗
(
    sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy
)

Source from the content-addressed store, hash-verified

426};
427
428export function getRawSourceDataCounter(
429 sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy
430): RawSourceDataCounter {
431 const method = rawSourceDataCounterMap[getMethodMapKey(sourceFormat, seriesLayoutBy)];
432 if (__DEV__) {
433 assert(method, 'Do not support count on "' + sourceFormat + '", "' + seriesLayoutBy + '".');
434 }
435 return method;
436}
437
438
439type RawSourceValueGetter = (

Callers 2

createExternalSourceFunction · 0.90
DefaultDataProviderClass · 0.85

Calls 2

getMethodMapKeyFunction · 0.85
assertFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…