data.links.highlight.opacityNumber(default: 0.8)
The opacity of the links when they are highlighted by hovering or tapping on them.
Example
<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" } }
],
links: [
{
sourceId: 1,
targetId: 2,
value: 10,
highlight: {
opacity: 1.0
}
}
]
}
});
</script>
In this article