sheets.rows.cells.colorString
The font color of the cell. Many standard CSS formats are supported. However, the canonical form is #ccff00.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Colored text",
color: "#ff0000"
}]
}]
}]
});
</script>
In this article