shapes.connectorDefaults.fillString|Object
Defines the fill options of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
x: 100,
y: 100,
content: { text: "Shape 1" },
connectorDefaults: {
fill: {
color: "lightblue",
opacity: 0.8
}
}
}]
});
</script>