* Get value. Return NaN if idx is out of range. * * @notice Should better to use `data.getStore().get(dimIndex, dataIdx)` instead.
(dim: SeriesDimensionName, idx: number)
| 769 | * @notice Should better to use `data.getStore().get(dimIndex, dataIdx)` instead. |
| 770 | */ |
| 771 | get(dim: SeriesDimensionName, idx: number): ParsedValue { |
| 772 | const store = this._store; |
| 773 | const dimInfo = this._dimInfos[dim]; |
| 774 | if (dimInfo) { |
| 775 | return store.get(dimInfo.storeDimIndex, idx); |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | /** |
| 780 | * @notice Should better to use `data.getStore().getByRawIndex(dimIndex, dataIdx)` instead. |
no outgoing calls
no test coverage detected