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