javascript - Get node position in D3 sankey diagram -
i'm using d3 plug-in make sankey diagram, , add labels above each column of nodes. this:
is there function in sankey object can return location of nodes?
var sankey = d3.sankey() .nodewidth(15) .nodepadding(10) .size([width, height]);
i'm following pattern here: http://bost.ocks.org/mike/sankey/
Comments
Post a Comment