MCPcopy Index your code
hub / github.com/apache/echarts / original

Method original

src/data/DataStore.ts:1317–1333  ·  view source on GitHub ↗
(
                this: DataStore, dataItem: any, property: string, dataIndex: number, dimIndex: number
            )

Source from the content-addressed store, hash-verified

1315 keyedColumns: getDimValueSimply,
1316
1317 original(
1318 this: DataStore, dataItem: any, property: string, dataIndex: number, dimIndex: number
1319 ): ParsedValue {
1320 // Performance sensitive, do not use modelUtil.getDataItemValue.
1321 // If dataItem is an plain object with no value field, the let `value`
1322 // will be assigned with the object, but it will be tread correctly
1323 // in the `convertValue`.
1324 const value = dataItem && (dataItem.value == null ? dataItem : dataItem.value);
1325
1326 return parseDataValue(
1327 (value instanceof Array)
1328 ? value[dimIndex]
1329 // If value is a single number or something else not array.
1330 : value,
1331 this._dimensions[dimIndex]
1332 );
1333 },
1334
1335 typedArray: function (
1336 this: DataStore, dataItem: any, property: string, dataIndex: number, dimIndex: number

Callers

nothing calls this directly

Calls 1

parseDataValueFunction · 0.90

Tested by

no test coverage detected