d3-plugins-cyclical-sankey
v0.0.3
Published
A bower and npm compatible fork of D3's Sankey plugin that handles cycles
Downloads
1
Readme
d3-sankey
A fork of D3js's Sankey plugin, modded for cyclical charts
Demo: http://bost.ocks.org/mike/sankey/
var sankey = d3.sankey()
.size([width, height])
.nodeWidth(15)
.nodePadding(10)
.nodes(energy.nodes)
.links(energy.links)
.layout(32);
var path = sankey.link();