expand
Expands the content body. Has no effect if expandable is false.
Example - expand the step
<div id="reasoning"></div>
<script>
$("#reasoning").kendoReasoning({
label: "Thinking",
expandable: true,
content: "Evaluating options."
});
var reasoning = $("#reasoning").data("kendoReasoning");
reasoning.expand();
</script>