disableAutoLayout Boolean
(default: false)
If set to true
, the Sankey will not automatically reorder the nodes to reduce the number of links that cross over each other.
Example - Disabling the automatic layout of the Sankey
<div id="sankey" style="width: 500px; height: 200px;"></div>
<script>
$("#sankey").kendoSankey({
data: {
nodes: [
{ id: 1, label: { text: "Node 1" } },
{ id: 2, label: { text: "Node 2" } },
{ id: 3, label: { text: "Node 3" } }
],
links: [
{ sourceId: 1, targetId: 3, value: 2 },
{ sourceId: 2, targetId: 3, value: 1 }
]
},
disableAutoLayout: true
});
</script>