expandableBoolean(default: false)
Enables toggling the visibility of the content body by clicking the header or using the keyboard.
Example - enable expand and collapse
<div id="reasoning"></div>
<script>
$("#reasoning").kendoReasoning({
label: "Reasoning",
expandable: true,
content: "Weighing multiple approaches."
});
</script>