(dimIdx: number, idx: number)
| 741 | } |
| 742 | |
| 743 | private _getCategory(dimIdx: number, idx: number): OrdinalRawValue { |
| 744 | const ordinal = this._store.get(dimIdx, idx); |
| 745 | const ordinalMeta = this._store.getOrdinalMeta(dimIdx); |
| 746 | if (ordinalMeta) { |
| 747 | return ordinalMeta.categories[ordinal as OrdinalNumber]; |
| 748 | } |
| 749 | return ordinal; |
| 750 | } |
| 751 | |
| 752 | /** |
| 753 | * @return Never null/undefined. `number` will be converted to string. Because: |
no test coverage detected