@@ -215,9 +215,7 @@ module.exports = function plot(gd, wrappedTraceHolders) {
215
215
columnBoundaryRect . enter ( )
216
216
. append ( 'rect' )
217
217
. classed ( 'columnBoundaryRect' , true )
218
- . attr ( 'fill' , 'none' )
219
- . attr ( 'stroke' , 'magenta' )
220
- . attr ( 'stroke-width' , 2 ) ;
218
+ . attr ( 'fill' , 'none' ) ;
221
219
222
220
columnBoundaryRect
223
221
. attr ( 'width' , function ( d ) { return d . columnWidth ; } )
@@ -325,7 +323,8 @@ function renderScrollbarKit(tableControlView, gd) {
325
323
scrollbarCaptureZone . enter ( )
326
324
. append ( 'line' )
327
325
. classed ( 'scrollbarCaptureZone' , true )
328
- . attr ( 'stroke' , 'rgba(0,0,0,0.01)' )
326
+ . attr ( 'stroke' , 'white' )
327
+ . attr ( 'stroke-opacity' , 0.01 ) // some browser might get rid of a 0 opacity element
329
328
. attr ( 'stroke-width' , c . scrollbarCaptureWidth )
330
329
. attr ( 'stroke-linecap' , 'butt' )
331
330
. attr ( 'y1' , 0 )
@@ -482,7 +481,7 @@ function sizeAndStyleRect(cellRect) {
482
481
return gridPick ( d . calcdata . cells . line . color , d . column . specIndex , d . rowNumber ) ;
483
482
} )
484
483
. attr ( 'fill' , function ( d ) {
485
- return d . calcdata . cells . fill ? gridPick ( d . calcdata . cells . fill . color , d . column . specIndex , d . rowNumber ) : 'none' ;
484
+ return gridPick ( d . calcdata . cells . fill . color , d . column . specIndex , d . rowNumber ) ;
486
485
} ) ;
487
486
}
488
487
0 commit comments