Skip to content

Instantly share code, notes, and snippets.

View MaximOrlovsky's full-sized avatar

Maxim Orlovsky MaximOrlovsky

View GitHub Profile
@MaximOrlovsky
MaximOrlovsky / d3.sankey.js
Created September 14, 2020 16:49 — forked from emeeks/d3.sankey.js
Sankey Particles IV
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;