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