shapeDefaults.radiusNumber
Defines the radius of the shape. Applicable for the circle shape.
Example - setting circle radius
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapeDefaults: {
type: "circle",
radius: 50,
fill: { color: "pink" },
stroke: { color: "red", width: 2 }
},
shapes: [
{ content: { text: "Large Circle" }, x: 100, y: 100 }
]
});
</script>
In this article