layout.radialSeparationNumber
(default: 150)
Defines the radial separation between the levels (except the first one which is defined by the aforementioned radialFirstLevelSeparation). This setting is specific to the radial tree layout.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [
{ id: "1", x: 250, y: 250, content: { text: "Root" } },
{ id: "2", x: 150, y: 150, content: { text: "Level 1" } },
{ id: "3", x: 100, y: 100, content: { text: "Level 2" } }
],
connections: [
{ from: "1", to: "2" },
{ from: "2", to: "3" }
],
layout: {
type: "tree",
subtype: "radial",
radialSeparation: 120
}
});
</script>
In this article