links.highlight.opacityNumber(default: 1)

The opacity of the links.

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: {
            opacity: 0.8
        }
    }
});
</script>
In this article
links.highlight.opacity
Not finding the help you need?
Contact Support