(value)
| 42 | |
| 43 | // Utils |
| 44 | getPixelForValue(value) { |
| 45 | return value === null ? NaN : this.getPixelForDecimal((value - this._startValue) / this._valueRange); |
| 46 | } |
| 47 | |
| 48 | getValueForPixel(pixel) { |
| 49 | return this._startValue + this.getDecimalForPixel(pixel) * this._valueRange; |
nothing calls this directly
no test coverage detected