* @param {number} value - Milliseconds since epoch (1 January 1970 00:00:00 UTC) * @return {number}
(value)
| 568 | * @return {number} |
| 569 | */ |
| 570 | getPixelForValue(value) { |
| 571 | const offsets = this._offsets; |
| 572 | const pos = this.getDecimalForValue(value); |
| 573 | return this.getPixelForDecimal((offsets.start + pos) * offsets.factor); |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * @param {number} pixel |
nothing calls this directly
no test coverage detected