* Computes the range value corresponding to a given domain value. * * @param {D} value * @returns {R} The range value corresponding to the supplied domain value.
(value: D)
| 106 | * @returns {R} The range value corresponding to the supplied domain value. |
| 107 | */ |
| 108 | public scale(value: D): R { |
| 109 | throw new Error("Subclasses should override scale"); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Gets an array of tick values spanning the domain. |
no outgoing calls
no test coverage detected