widthNumber
Sets the width of the rectangle.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
type: "rectangle",
x: 100,
y: 100,
width: 300,
height: 100,
fill: {
color: "#ff6358"
}
}]
});
</script>