collapse
Collapses the content body.
Example - collapse the step
<div id="reasoning"></div>
<script>
$("#reasoning").kendoReasoning({
label: "Thinking",
expandable: true,
expanded: true,
content: "Evaluating options."
});
var reasoning = $("#reasoning").data("kendoReasoning");
reasoning.collapse();
</script>