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

Defines the hover configuration of the shape connectors.

<div id="diagram"></div>
<script>
  $("#diagram").kendoDiagram({
    shapes: [{
      id: "1",
      x: 20,
      y: 40,
      content: {
        text: "Monday"
      },
      connectors: [
        {
          name: "top",
          hover: {
            fill: {
              color: "pink"
            },
            stroke: {
              dashType: "dash",
              color: "blue",
              width: 2
            }
          },
          width: 15,
          height: 15
        }, {name: "right", width: 10, height: 10}]
    }, {
      id: "2",
      x: 200,
      y: 40,
      content: {
        text: "Tuesday"
      }
    }, {
      id: "3",
      x: 380,
      y: 200,
      content: {
        text: "Wednesday"
      }
    }],
    connections: [{
      from: "1",
      to: "2",
      fromConnector: "top"
    },{
      from: "2",
      to: "3"
    }],
    connectionDefaults: {
      endCap: "ArrowEnd"
    }
  });
</script>

Defines the hover fill options of the shape connectors.

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
        id: "1",
        content: { text: "Hover Connectors" },
        x: 100,
        y: 20,
        connectors: [{
            name: "top",
            hover: {
                fill: {
                    color: "#ffcc00",
                    opacity: 0.9
                }
            }
        }]
    }]
});
</script>

Defines the hover stroke options of the shape connectors.

<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>