thoughts.secondaryLabelString
A secondary label displayed after the separator in the thought item.
Example - set a secondary label on a thought
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Reasoning",
expanded: true,
thoughts: [
{ label: "Querying", secondaryLabel: "database" }
]
});
</script>