sheets.rows.cells.boldBoolean
If set to true, sets the cell font to bold.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Bold text",
bold: true
}]
}]
}]
});
</script>
In this article