sheets.rows.cells.fontFamilyString
The font family of the cell.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Custom Font",
fontFamily: "Courier New"
}]
}]
}]
});
</script>
In this article