New to Kendo UI for jQueryStart a free 30-day trial

The fill options of the connection vertex handle.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } },
        { id: "2", x: 300, y: 200, content: { text: "Shape 2" } }
    ],
    connections: [{
        from: "1",
        to: "2",
        editable: {
            points: {
                vertex: {
                    fill: {
                        color: "#4caf50",
                        opacity: 0.8
                    }
                }
            }
        }
    }]
});
</script>

The fill color of the connection vertex handle.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } },
        { id: "2", x: 300, y: 200, content: { text: "Shape 2" } }
    ],
    connections: [{
        from: "1",
        to: "2",
        editable: {
            points: {
                vertex: {
                    fill: {
                        color: "#4caf50"
                    }
                }
            }
        }
    }]
});
</script>

The fill opacity of the connection vertex handle. Accepts values from 0 (fully transparent) to 1 (fully opaque).

Default: 1

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [
        { id: "1", x: 100, y: 100, content: { text: "Shape 1" } },
        { id: "2", x: 300, y: 200, content: { text: "Shape 2" } }
    ],
    connections: [{
        from: "1",
        to: "2",
        editable: {
            points: {
                vertex: {
                    fill: {
                        color: "#4caf50",
                        opacity: 0.5
                    }
                }
            }
        }
    }]
});
</script>