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.
2 parents e38b7cf + addb85b commit 94338f4Copy full SHA for 94338f4
src/traces/table/plot.js
@@ -143,12 +143,11 @@ module.exports = function plot(gd, wrappedTraceHolders) {
143
columnBlock.enter()
144
.append('g')
145
.classed('columnBlock', true)
146
- .attr('id', function(d) {return d.key;})
147
- .style('user-select', 'none');
+ .attr('id', function(d) {return d.key;});
148
149
columnBlock
150
.style('cursor', function(d) {
151
- return d.dragHandle ? 'ew-resize' : d.calcdata.scrollbarState.barWiggleRoom ? 'ns-resize' : 'default';
+ return d.dragHandle ? 'ew-resize' : 'auto';
152
});
153
154
var cellsColumnBlock = columnBlock.filter(cellsBlock);
0 commit comments