We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51fe593 commit f1fdab0Copy full SHA for f1fdab0
packages/core/src/components/axes/zoom-bar.ts
@@ -326,7 +326,7 @@ export class ZoomBar extends Component {
326
.attr("y", 0)
327
.attr("width", handleWidth)
328
.attr("height", handleHeight)
329
- .attr("cursor", "pointer")
+ .attr("cursor", "ew-resize")
330
.style("display", null); // always display
331
332
// handle-bar
@@ -359,7 +359,7 @@ export class ZoomBar extends Component {
359
.attr("y", handleYBarDiff)
360
.attr("width", handleBarWidth)
361
.attr("height", handleBarHeight)
362
- .attr("cursor", "pointer");
+ .attr("cursor", "ew-resize");
363
364
// Update slider selected area
365
if (zoombarType === ZoomBarTypes.SLIDER_VIEW) {
0 commit comments