shapes.connectors.fill.opacityNumber
(default: 1)
Defines the fill opacity of the shape connectors.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
content: { text: "Semi-transparent Connectors" },
x: 100,
y: 20,
connectors: [{
name: "bottom",
fill: {
color: "#0066cc",
opacity: 0.7
}
}]
}]
});
</script>
In this article