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

Function onPointerLeave

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

Source from the content-addressed store, hash-verified

1178 };
1179
1180 const onPointerLeave = (e: PointerEvent): void => {
1181 if (disposed) return;
1182 if (!hasHoverListeners() && !tapCandidate) return;
1183 clearTapCandidateIfMatches(e);
1184 setHovered(null, e);
1185 };
1186
1187 const onPointerCancel = (e: PointerEvent): void => {
1188 if (disposed) return;

Callers

nothing calls this directly

Calls 3

hasHoverListenersFunction · 0.85
setHoveredFunction · 0.70

Tested by

no test coverage detected