title.visibleBoolean(default: true)
If set to false the Sankey will not display the title.
Example
<div id="sankey" style="width: 500px; height: 200px;"></div>
<script>
$("#sankey").kendoSankey({
title: {
text: "Sankey Diagram",
visible: false
},
data: {
nodes: [
{ id: 1, label: { text: "Node 1" } },
{ id: 2, label: { text: "Node 2" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 1 }
]
}
});
</script>
In this article