nodes.focusHighlight.border.opacityNumber(default: 1)

The opacity of the border.

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 }
        ]
    },
    nodes: {
        focusHighlight: {
            border: {
                opacity: 0.6
            }
        }
    }
});
</script>