thoughts.linesRemovedNumber
The number of lines removed, displayed as a red delta badge on the thought item.
Example - show a lines-removed delta on a thought
<div id="chain"></div>
<script>
$("#chain").kendoChainOfThought({
label: "Editing",
expanded: true,
thoughts: [
{ label: "app.js", linesAdded: 5, linesRemoved: 10 }
]
});
</script>