UNPKG

@plotly/d3

Version:

A JavaScript visualization library for HTML and SVG.

11 lines (9 loc) 387 B
import "../interpolate/ease"; import "../selection/each"; import "transition"; d3_transitionPrototype.ease = function(value) { var id = this.id, ns = this.namespace; if (arguments.length < 1) return this.node()[ns][id].ease; if (typeof value !== "function") value = d3.ease.apply(d3, arguments); return d3_selection_each(this, function(node) { node[ns][id].ease = value; }); };