* Maps a range value (pixel) back to a domain value. * * Notes: * - No clamping (will extrapolate outside the range). * - If the domain span is 0 (min === max), returns domain min for any input.
(pixel: number)
| 26 | * - If the domain span is 0 (min === max), returns domain min for any input. |
| 27 | */ |
| 28 | invert(pixel: number): number; |
| 29 | } |
| 30 | |
| 31 | export interface CategoryScale { |
no outgoing calls
no test coverage detected