completedBoolean(default: false)
Marks the step as completed, applying the k-agent-completed CSS class to the element.
Example - mark the step as completed
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Done",
completed: true
});
</script>