Skip to content

stilltorik/d3-sankey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sankey Diagrams

Sankey diagrams library based on d3.

Install

npm install https://github.com/ONE-LOGIC/d3-sankey

Add Javascript:

<script src="node_modules/d3-sankey/releases/sankey_1.4_2013_03_12.js"></script>

Usage

Define the sankey chart

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

Create the links

var path = sankey.link();