From 7fe6fa2670cdb35d01eda44b2c8cce6d286ed1da Mon Sep 17 00:00:00 2001 From: Marco Ribeiro <41395992+ribeirompl@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:56:54 +0200 Subject: [PATCH] feat(dataZoom): change moveHandler cursor icon to default --- src/component/dataZoom/SliderZoomView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/dataZoom/SliderZoomView.ts b/src/component/dataZoom/SliderZoomView.ts index 926763325a..f0ef14fc34 100644 --- a/src/component/dataZoom/SliderZoomView.ts +++ b/src/component/dataZoom/SliderZoomView.ts @@ -686,7 +686,7 @@ class SliderZoomView extends DataZoomView { actualMoveZone.attr({ draggable: true, - cursor: 'move', + cursor: 'default', drift: bind(this._onDragMove, this, 'all'), ondragstart: bind(this._showDataInfo, this, true), ondragend: bind(this._onDragEnd, this),