sheets.rows.cells.underlineBoolean
If set to true, sets the cell font to underline.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
name: "MySheet",
rows: [{
cells: [{
value: "Underlined text",
underline: true
}, {
value: "Normal text",
underline: false
}]
}]
}]
});
</script>
In this article