links.focusHighlight.border.colorString(default: "black")

The color of the border. Accepts a valid CSS color string, including hex and rgb.

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: {
        focusHighlight: {
            border: {
                color: "#ff6358"
            }
        }
    }
});
</script>