(sourceFormat: SourceFormat)
| 475 | }; |
| 476 | |
| 477 | export function getRawSourceValueGetter(sourceFormat: SourceFormat): RawSourceValueGetter { |
| 478 | const method = rawSourceValueGetterMap[sourceFormat]; |
| 479 | if (__DEV__) { |
| 480 | assert(method, 'Do not support get value on "' + sourceFormat + '".'); |
| 481 | } |
| 482 | return method; |
| 483 | } |
| 484 | |
| 485 | |
| 486 | function getMethodMapKey(sourceFormat: SourceFormat, seriesLayoutBy: SeriesLayoutBy): string { |
no test coverage detected
searching dependent graphs…