Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 374 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 374 Bytes

Multipart Sankey Diagrams

Extended from Mike Bostock's original d3.sankey.

Demo

npm install d3-sankey-multipart

var sankey = d3.sankey()
    .size([width, height])
    .nodeWidth(15)
    .nodePadding(10)
    .nodes(energy.nodes)
    .links(energy.links)
    .layout(32);
var path = sankey.link();