(indices: [number, number][])
| 424 | } |
| 425 | |
| 426 | private indicesToCellNums(indices: [number, number][]): number[] { |
| 427 | if (indices === null || indices === undefined) { |
| 428 | return null; |
| 429 | } |
| 430 | |
| 431 | return indices.map((i) => i[0] * this.numColumns + i[1]); |
| 432 | } |
| 433 | |
| 434 | invert_point(pixel) { |
| 435 | // For now, an index selector is not supported for the heatmap |
no outgoing calls
no test coverage detected