(
this: DataStore, dataItem: any, property: string, dataIndex: number, dimIndex: number
)
| 1297 | private static internalField = (function () { |
| 1298 | |
| 1299 | function getDimValueSimply( |
| 1300 | this: DataStore, dataItem: any, property: string, dataIndex: number, dimIndex: number |
| 1301 | ): ParsedValue { |
| 1302 | return parseDataValue(dataItem[dimIndex], this._dimensions[dimIndex]); |
| 1303 | } |
| 1304 | |
| 1305 | defaultDimValueGetters = { |
| 1306 |
nothing calls this directly
no test coverage detected