MCPcopy Index your code
hub / github.com/ChartGPU/ChartGPU / onPointerCancel

Function onPointerCancel

src/ChartGPU.ts:1187–1192  ·  view source on GitHub ↗
(e: PointerEvent)

Source from the content-addressed store, hash-verified

1185 };
1186
1187 const onPointerCancel = (e: PointerEvent): void => {
1188 if (disposed) return;
1189 if (!hasHoverListeners() && !tapCandidate) return;
1190 clearTapCandidateIfMatches(e);
1191 setHovered(null, e);
1192 };
1193
1194 const onLostPointerCapture = (e: PointerEvent): void => {
1195 if (disposed) return;

Callers

nothing calls this directly

Calls 3

hasHoverListenersFunction · 0.85
setHoveredFunction · 0.70

Tested by

no test coverage detected