Highcharts Demo
author(s): Torstein Hønsi
by WoJWoJ
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/sankey.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container"></div>
CSS
#container {
min-width: 300px;
max-width: 800px;
height: 400px;
margin: 1em auto;
border: 1px solid silver;
}
JavaScript
Highcharts.chart('container', {
series: [{
keys: ['from', 'to', 'weight'],
data: [
['One', 'world', 30],
['One', 'hello', 70],
['hello', 'aaa', 49],
['hello', 'bbb', 21],
],
type: 'sankey',
}]
});