thoughtsArray(default: [])
An array of thought objects rendered inside the step body. Each item can include label, secondaryLabel, svgIcon, linesAdded, linesRemoved, time, children, and completed properties.
Example - set thoughts
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Researching",
expandable: true,
expanded: true,
thoughts: [
{ label: "Searching web", svgIcon: "search" },
{ label: "Reading results", completed: true }
]
});
</script>