nodes Object

    The default nodes configuration of the Sankey. The nodes configuration options will be overridden by the data.nodes configuration.

    Example - Setting the default nodes options of the Sankey

    Open In Dojo
    <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" } },
                    { id: 3, label: { text: "Node 3" } }
                ],
                links: [
                    { sourceId: 1, targetId: 3, value: 2 },
                    { sourceId: 2, targetId: 3, value: 1 }
                ]
            },
            nodes: {
                align: "stretch",
                color: "green",
                offset: { left: 0, top: 0 },
                padding: 16,
                width: 24
            }
        });
    </script>
    In this article