sheets.rows.cells.verticalAlignString
The vertical align setting for the cell content.
The available options are:
top
center
bottom
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
name: "MySheet",
rows: [{
height: 60,
cells: [{
value: "Top aligned",
verticalAlign: "top"
}, {
value: "Center aligned",
verticalAlign: "center"
}, {
value: "Bottom aligned",
verticalAlign: "bottom"
}]
}]
}]
});
</script>
In this article