* Returns the location of the given data point. Value can either be an index or a numerical value * The coordinate (0, 0) is at the upper-left corner of the canvas * @param {*} value * @param {number} [index] * @return {number}
(value: number, index?: number)
| 1334 | * @return {number} |
| 1335 | */ |
| 1336 | getPixelForValue(value: number, index?: number): number; |
| 1337 | |
| 1338 | /** |
| 1339 | * Used to get the data value from a given pixel. This is the inverse of getPixelForValue |
no outgoing calls
no test coverage detected