shapes.connectorDefaults.hoverObject

Defines the hover configuration of the shape connectors.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Hover Default Config" },
        x: 100,
        y: 20,
        connectorDefaults: {
            hover: {
                fill: {
                    color: "#ffcc00"
                },
                stroke: {
                    color: "#cc6600",
                    width: 2
                }
            }
        }
    }]
});
</script>