expandedBoolean(default: false)
Controls whether the thoughts body is visible when the widget initializes.
Example - initialize the widget in expanded state
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Thinking",
expandable: true,
expanded: true,
thoughts: [
{ label: "Checked knowledge base" }
]
});
</script>