shapes.connectors.hover.strokeString|Object

Defines the hover stroke options of the shape connectors.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Hover Stroke Demo" },
        x: 100,
        y: 20,
        connectors: [{
            name: "right",
            hover: {
                stroke: {
                    color: "#cc0066",
                    width: 3,
                    dashType: "dash"
                }
            }
        }]
    }]
});
</script>