(this: OrdinalScale, val: number)
| 191 | }, |
| 192 | |
| 193 | scale(this: OrdinalScale, val: number): OrdinalNumber { |
| 194 | return this.getRawOrdinalNumber(mathRound(this._mapper.scale(val))); |
| 195 | }, |
| 196 | |
| 197 | transformIn(val, opt) { |
| 198 | return this._mapper.transformIn(this._getTickNumber(val), opt); |
nothing calls this directly
no test coverage detected