(axis: VegaDeckGl.types.Axis, column: Column, i: number)
| 94 | } |
| 95 | |
| 96 | export function selectBetweenAxis(axis: VegaDeckGl.types.Axis, column: Column, i: number) { |
| 97 | const low = tickValue(axis, i); |
| 98 | const high = tickValue(axis, i + 1); |
| 99 | return selectBetween(column, low.value, high.value); |
| 100 | } |
nothing calls this directly
no test coverage detected