legend.title.margin.leftNumber(default: 0)
The left margin 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",
margin: { left: 20 }
}
}
});
</script>
In this article