sheets.rows.cells.borderBottomObject
The style information for the bottom border of the cell.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Cell with bottom border",
borderBottom: {
color: "#000000",
size: "2px"
}
}]
}]
}]
});
</script>
sheets.rows.cells.borderBottom.colorString
The bottom border 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: "Cell",
borderBottom: {
color: "#ff0000"
}
}]
}]
}]
});
</script>
sheets.rows.cells.borderBottom.sizeString
The width of the border in pixels.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Cell",
borderBottom: {
size: "3px"
}
}]
}]
}]
});
</script>
In this article