data.nodes.label.textString(required)

The text of the label.

Example

<div id="sankey" style="width: 500px; height: 200px;"></div>
<script>
    $("#sankey").kendoSankey({
        data: {
            nodes: [
                { id: 1, label: { text: "Custom Label Text" } },
                { id: 2, label: { text: "Another Node" } }
            ],
            links: [
                { sourceId: 1, targetId: 2, value: 10 }
            ]
        }
    });
</script>
In this article
data.nodes.label.text
Not finding the help you need?
Contact Support