(axis: VegaDeckGl.types.Axis, column: Column, i: number)
| 62 | } |
| 63 | |
| 64 | export function selectExactAxis(axis: VegaDeckGl.types.Axis, column: Column, i: number) { |
| 65 | const result = tickValue(axis, i); |
| 66 | if (result.tick) { |
| 67 | return selectExact(column, result.value); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | export function selectBetween(column: Column, lowValue: SearchExpressionValue, highValue: SearchExpressionValue, lowOperator: SearchExpressionOperators = '>=', highOperator: SearchExpressionOperators = '<') { |
| 72 | const expressions: SearchExpression[] = []; |
no test coverage detected