radius Number
The radius of the circle.
Example - setting the radius of the Circle
<div id="diagram"></div>
<script>
var diagram = kendo.dataviz.diagram;
function getVisual(data) {
var g = new diagram.Group({
autoSize: true
});
var r = new diagram.Circle({
center: {x: 40, y: 40},
radius: 40
});
g.append(r);
return g;
};
$("#diagram").kendoDiagram({
layout: "tree",
shapes: [{
id: "1",
content: {
text: "Monday"
},
visual: getVisual
}]
});
</script>