d3.dragEnable()

d3.dragEnable(window[, noclick])

Allows native drag-and-drop and text selection on the specified window; undoes the effect of d3.dragDisable. This method is intended to be called on mouseup, preceded by d3.dragDisable on mousedown. If noclick is true, this method also temporarily suppresses click events. The suppression of click events expires after a zero-millisecond timeout, such that it only suppress the click event that would immediately follow the current mouseup event, if any.

doc_D3_Js
2016-11-24 10:25:57
Comments
Leave a Comment

Please login to continue.