Sheets.rows.cells
configurationThe cells of each row. Each cell represents a cell from the final Excel document.
sheets.rows.cells
ArraySets the background color of the cell. Supports hex CSS-like values that start with #, for example, #ff00ff.
Default: null
sheets.rows.cells.bold
BooleanSetting sheets.rows.cells.bold to true makes the cell content bold.
Default: false
The style information for the bottom border of the cell.
The style information for the left border of the cell.
The style information for the right border of the cell.
The style information for the top border of the cell.
Sets the number of columns that a cell occupies.
Default: 1
sheets.rows.cells.color
StringThe text color of the cell. Supports hex CSS-like values that start with #, for example, #ff00ff.
Default: null
Sets the font for displaying the cell value.
Default: "Calibri"
Deprecated in versions 2015.3 and later. Use fontFamily instead.
Default: "Calibri"
Sets the font size in pixels.
Default: 11
sheets.rows.cells.format
StringSets the format that Excel uses to display the cell value.
The format option does not follow the
{0:}syntax thatkendo.formatuses.
For more information on the formats that Excel supports, refer to the page on creating a custom number format.
Sets the formula that Excel uses to compute and display the cell content.
sheets.rows.cells.hAlign
StringDeprecated in versions 2015.3 and later. Use textAlign instead.
sheets.rows.cells.index
ObjectThe zero-based index of the cell in the row. Records which miss an index will be placed in the first available cell on the row.
Mixing indexed with non-indexed cells might cause invalid results. To use both, place the indexed cells at the end of the array.
sheets.rows.cells.italic
BooleanSetting sheets.rows.cells.italic to true renders the cell content in italics.
Default: false
Sets the number of rows that a cell occupies.
Default: 1
Sets the horizontal alignment of the cell content.
The supported values are:
"left""center""right"
sheets.rows.cells.underline
BooleanSetting sheets.rows.cells.underline to true underlines the cell content.
Default: false
sheets.rows.cells.vAlign
StringDeprecated in versions 2015.3 and later. Use verticalAlign instead.
Default: "bottom"
sheets.rows.cells.value
Date|Number|String|BooleanThe value (content) of the cell. Numbers and dates are formatted as strings. String values are HTML-encoded.
Sets the vertical alignment of the cell content.
The supported values are:
"top""center""bottom"
Default: "bottom"
sheets.rows.cells.wrap
BooleanSetting sheets.rows.cells.wrap to true wraps the cell content.
Default: false