(
sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy
)
| 426 | }; |
| 427 | |
| 428 | export 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 | |
| 439 | type RawSourceValueGetter = ( |
no test coverage detected
searching dependent graphs…