links.highlightObject
The link highlight configuration options.
Example
<div id="sankey"></div>
<script>
$("#sankey").kendoSankey({
data: {
nodes: [
{ id: 1, label: { text: "Solar" } },
{ id: 2, label: { text: "Electricity" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 40 }
]
},
links: {
highlight: {
inactiveOpacity: 0.3,
opacity: 0.9
}
}
});
</script>
In this article