Labels.padding
configurationThe padding of the label.
labels.padding
Number|ObjectDefault: 0
<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" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 10 }
]
},
labels: {
padding: {
top: 5,
bottom: 5,
left: 10,
right: 10
},
border: {
color: "#ff6358",
width: 1
}
}
});
</script>
labels.padding.bottom
NumberThe bottom padding of the label.
Default: 0
<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" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 10 }
]
},
labels: {
padding: {
bottom: 10
},
border: {
color: "#ff6358",
width: 1
}
}
});
</script>
labels.padding.left
NumberThe left padding of the label.
Default: 0
<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" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 10 }
]
},
labels: {
padding: {
left: 12
},
border: {
color: "#ff6358",
width: 1
}
}
});
</script>
labels.padding.right
NumberThe right padding of the label.
Default: 0
<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" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 10 }
]
},
labels: {
padding: {
right: 12
},
border: {
color: "#ff6358",
width: 1
}
}
});
</script>
labels.padding.top
NumberThe top padding of the label.
Default: 0
<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" } }
],
links: [
{ sourceId: 1, targetId: 2, value: 10 }
]
},
labels: {
padding: {
top: 8
},
border: {
color: "#ff6358",
width: 1
}
}
});
</script>