MCPcopy Index your code
hub / github.com/microsoft/SandDance / selectExactAxis

Function selectExactAxis

packages/sanddance/src/expression.ts:64–69  ·  view source on GitHub ↗
(axis: VegaDeckGl.types.Axis, column: Column, i: number)

Source from the content-addressed store, hash-verified

62}
63
64export 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
71export function selectBetween(column: Column, lowValue: SearchExpressionValue, highValue: SearchExpressionValue, lowOperator: SearchExpressionOperators = '>=', highOperator: SearchExpressionOperators = '<') {
72 const expressions: SearchExpression[] = [];

Callers 1

axisSelectionPolygonsFunction · 0.90

Calls 2

tickValueFunction · 0.70
selectExactFunction · 0.70

Tested by

no test coverage detected