expand
Expands the step body, showing the thoughts list. Has no effect if expandable is false.
Example - expand the step
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Analyzing",
expandable: true,
thoughts: [{ label: "Checking sources" }]
});
var chain = $("#chain").data("kendoChainOfThought");
chain.expand();
</script>