expandedBoolean(default: false)
Controls whether the content body is visible when the widget initializes.
Example - initialize the widget in expanded state
<div id="reasoning"></div>
<script>
$("#reasoning").kendoReasoning({
label: "Reasoning",
expandable: true,
expanded: true,
content: "Evaluating all available options before responding."
});
</script>