Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6288559 commit 154ab24Copy full SHA for 154ab24
src/traces/table/plot.js
@@ -147,7 +147,7 @@ module.exports = function plot(gd, wrappedTraceHolders) {
147
148
columnBlock
149
.style('cursor', function(d) {
150
- return d.dragHandle ? 'ew-resize' : 'auto';
+ return d.dragHandle ? 'ew-resize' : d.calcdata.scrollbarState.barWiggleRoom ? 'ns-resize' : 'default';
151
});
152
153
var headerColumnBlock = columnBlock.filter(headerBlock);
@@ -432,7 +432,9 @@ function renderCellText(cellTextHolder) {
432
433
cellText.enter()
434
.append('text')
435
- .classed('cellText', true);
+ .classed('cellText', true)
436
+ .style('cursor', function() {return 'auto';})
437
+ .on('mousedown', function() {d3.event.stopPropagation();});
438
439
return cellText;
440
}
0 commit comments