d3.easeBounceIn()

d3.easeBounceIn(t) Bounce easing, like a rubber ball.

d3.easeBounceOut()

d3.easeBounce(t) d3.easeBounceOut(t) Reverse bounce easing; equivalent to 1 - bounceIn(1 - t).

d3.easeBackOut()

d3.easeBackOut(t) Reverse anticipatory easing; equivalent to 1 - backIn(1 - t).

d3.easeBackIn()

d3.easeBackIn(t) Anticipatory easing, like a dancer bending his knees before jumping off the floor. The degree of overshoot is configurable; it not specified, it defaults to 1.70158.

d3.easeBackInOut()

d3.easeBack(t) d3.easeBackInOut(t) Symmetric anticipatory easing; scales backIn for t in [0, 0.5] and backOut for t in [0.5, 1].

d3.dsvFormat()

d3.dsvFormat(delimiter) <> Constructs a new DSV parser and formatter for the specified delimiter. The delimiter must be a single character (i.e., a single 16-bit code unit); so, ASCII delimiters are fine, but emoji delimiters are not.

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.

d3.dragDisable()

d3.dragDisable(window) Prevents native drag-and-drop and text selection on the specified window. As an alternative to preventing the default action of mousedown events (see #9), this method prevents undesirable default actions following mousedown. In supported browsers, this means capturing dragstart and selectstart events, preventing the associated default actions, and immediately stopping their propagation. In browsers that do not support selection events, the user-select CSS property is se

d3.drag()

d3.drag() Creates a new drag behavior. The returned behavior, drag, is both an object and a function, and is typically applied to selected elements via selection.call.

d3.dispatch()

d3.dispatch(types…) Creates a new dispatch for the specified event types. Each type is a string, such as "start" or "end".