Using the google charts Sankey Diagram, I want to set my self the positions of the nodes: The normal behaviour of a Sankey diagram is that every nodes emerging from others nodes must be aligned on the same vertical line:
My aim is to copy this Sankry Diagram :
As you can see, nodes emerging from the same previous node are not on the same level.
My questions:
Is it possible to access each node property ? From what's google is displaying on its tutorial, one can only modify the behaviour of every nodes :
var options = {
width: 600,
sankey: {
link: { color: { fill: '#d799ae', fillOpacity: 0.8 } },
node: { colors: [ '#a61d4c' ],
label: { color: '#871b47' } },
}
};
If not possible with Google Charts, do you know another web framework that could let me customise the diagram as described ?