Sankey Fusion Chart Limitations/Bugs
Created using FusionCharts Suite XT - www.fusioncharts.com
HTML
<script src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<script src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
<!--
A Scroll Column 2D Chart showing sales trend for last two years.
-->
<div id="container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function() {
var topStores = new FusionCharts({
type: "sankey",
renderAt: "container",
id: "sankey-chart",
width: "650",
height: "400",
dataFormat: "json",
dataSource: {
chart: {
caption: "Immigrant Flow for Last Month (In Millions)",
legendPosition: "bottom",
"linkAlpha": "100",
//linkcolor: 'blend',
theme: "fusion"
},
nodes: [{
label: "Netherlands"
},
{
label: "Germany"
},
{
label: "European Union"
}
],
links: [{
from: "Netherlands",
to: "European Union",
value: 798744
},
{
from: "European Union",
to: "Germany",
value: 244
}
]
}
}).render();
});