shapes.connectors.fill.colorString
Defines the fill color of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Orange Connectors" },
x: 100,
y: 20,
connectors: [{
name: "top",
fill: {
color: "#ff9900"
}
}]
}]
});
</script>
In this article