@@ -350,7 +350,8 @@ function styleExtentTexts(selection) {
350350 selection
351351 . classed ( c . cn . axisExtentText , true )
352352 . attr ( 'text-anchor' , 'middle' )
353- . style ( 'cursor' , 'default' ) ;
353+ . style ( 'cursor' , 'default' )
354+ . style ( 'user-select' , 'none' ) ;
354355}
355356
356357function parcoordsInteractionState ( ) {
@@ -654,7 +655,8 @@ module.exports = function parcoords(gd, cdModule, layout, callbacks) {
654655
655656 axis . selectAll ( 'text' )
656657 . style ( 'text-shadow' , '1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff' )
657- . style ( 'cursor' , 'default' ) ;
658+ . style ( 'cursor' , 'default' )
659+ . style ( 'user-select' , 'none' ) ;
658660
659661 var axisHeading = axisOverlays . selectAll ( '.' + c . cn . axisHeading )
660662 . data ( repeat , keyFun ) ;
@@ -671,6 +673,7 @@ module.exports = function parcoords(gd, cdModule, layout, callbacks) {
671673 . classed ( c . cn . axisTitle , true )
672674 . attr ( 'text-anchor' , 'middle' )
673675 . style ( 'cursor' , 'ew-resize' )
676+ . style ( 'user-select' , 'none' )
674677 . style ( 'pointer-events' , 'auto' ) ;
675678
676679 axisTitle
0 commit comments