thoughts.timeString
A time or duration string displayed after a separator in the thought item.
Example - show time on a thought
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Running",
expanded: true,
thoughts: [
{ label: "API call", time: "1.2s" }
]
});
</script>