Highcharts Demo
author(s):
Torstein Hønsi
by Torstein Hønsi
HTML
<script src="https://code.highcharts.com/6.0.7/highcharts.js"></script>
<script src="https://code.highcharts.com/6.0.7/modules/sankey.js"></script>
<script src="https://code.highcharts.com/6.0.7/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;
}
#csv {
display: none;
}
JavaScript
Highcharts.chart('container', {
title: {
text: 'Highcharts Sankey Diagram'
},
series: [{
keys: ['from', 'to', 'weight'],
data: [{
from: 'AT',
to: 'DE',
weight: 10
},
{
from: 'DE',
to: 'CH',
weight: 5
},
{
from: 'CH',
to: 'DE',
weight: 15
},
{
from: 'DE',
to: 'FI',
weight: 5
}
],
type: 'sankey',
name: 'Sankey demo series'
}]
});