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