labels.border.colorString(default: "black")

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

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 }
            ]
        },
        labels: {
            border: {
                color: "#28b4c8",
                width: 2
            }
        }
    });
</script>
In this article
labels.border.color
Not finding the help you need?
Contact Support