thoughts.completedBoolean
Marks the individual thought item as completed by applying the k-thought-completed CSS class.
Example - mark a thought as completed
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Running",
expanded: true,
thoughts: [
{ label: "Step 1", completed: true },
{ label: "Step 2" }
]
});
</script>