shapes.fill.gradient.radiusNumber(default: 1)
The radius of the radial gradient relative to the shape bounding box.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
x: 100,
y: 100,
content: { text: "Shape 1" },
fill: {
gradient: {
type: "radial",
radius: 0.8
}
}
}]
});
</script>
In this article