messages.resultLabelString(default: "Result")
The heading label rendered above the result JSON block in the step body.
Example - set the result section label
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "fetch_user",
state: "completed",
expandable: true,
expanded: true,
result: { name: "Jane" },
messages: {
resultLabel: "Output"
}
});
</script>