shapes.editable.tools.nameString
The name of the tool. The built-in tools are edit, delete, rotateClockwise, and rotateAnticlockwise.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
id: "1",
x: 100,
y: 100,
content: { text: "Shape 1" },
editable: {
tools: [{
name: "edit"
}, {
name: "delete"
}, {
name: "rotateClockwise"
}]
}
}]
});
</script>
In this article