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:enter image description here

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

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -