layout.underneathHorizontalOffsetNumber(default: 15)

Defines the horizontal offset from a child with respect to its parent. This setting is specific to the tipOver tree layout.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Parent" } },
        { id: "2", x: 200, y: 150, content: { text: "Child 1" } },
        { id: "3", x: 200, y: 200, content: { text: "Child 2" } }
    ],
    connections: [
        { from: "1", to: "2" },
        { from: "1", to: "3" }
    ],
    layout: {
        type: "tree",
        subtype: "tipOver",
        underneathHorizontalOffset: 30
    }
});
</script>