(_payload: ChartGPUEventPayload)
| 119 | }; |
| 120 | |
| 121 | const onMouseLeave = (_payload: ChartGPUEventPayload): void => { |
| 122 | lastPointer = null; |
| 123 | clearPan(); |
| 124 | }; |
| 125 | |
| 126 | const onWheel = (e: WheelEvent): void => { |
| 127 | if (!enabled || disposed) return; |
nothing calls this directly
no test coverage detected