legend.title.fontString(default: "16px Arial,Helvetica,sans-serif")

The font of the title.

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 }
        ]
    },
    legend: {
        visible: true,
        title: {
            text: "Legend Title",
            font: "18px Arial, sans-serif"
        }
    }
});
</script>
In this article
legend.title.font
Not finding the help you need?
Contact Support