Is there a way to stop to text from being selected when the drag behavior is turned off in a force directed graph?
The drag behavior is turned off using these lines:
svg.selectAll('g.gnode')
.on('mousedown.drag', null);
The pointer remains a pointer, rather than a cursor (as per the answer to this question). But dragging still ends up changing the pointer to a cursor and starts to select text. Is there a way to avoid this so no text is selected when dragging?