From 509be2444f3963b68c9a2159e329a6688c79a248 Mon Sep 17 00:00:00 2001 From: Marco Ribeiro <41395992+ribeirompl@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:40:45 +0200 Subject: [PATCH] feat(dataZoom): change moveHandler cursor icon to move --- 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 a6545fdb3e..926763325a 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: getCursor(this._orient), + cursor: 'move', drift: bind(this._onDragMove, this, 'all'), ondragstart: bind(this._showDataInfo, this, true), ondragend: bind(this._onDragEnd, this),