expandableBoolean(default: false)
Enables toggling the visibility of the thoughts body by clicking the header or using the keyboard.
Example - enable expand and collapse
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Reasoning",
expandable: true,
thoughts: [
{ label: "Step one" }
]
});
</script>