Skip to content

Instantly share code, notes, and snippets.

@kyudongkim
kyudongkim / d3.sankey.js
Created March 16, 2021 02:30 — forked from emeeks/d3.sankey.js
Sankey Particles
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;