Skip to content

Sankey diagram

import { SankeyChart } from '@arshad-shah/swift-chart';
const chart = new SankeyChart('#chart', { theme: 'midnight' });
chart.setSankey(energyFlow.nodes, energyFlow.links);

Layout

The layout splits nodes into columns by longest source-path and relaxes y positions iteratively. Tune density with nodePadding and nodeWidth.

Reference