sheets.rows.cells.wrapBoolean
If set to true, wraps the cell content.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
name: "MySheet",
rows: [{
height: 60,
cells: [{
value: "This is a very long text that should wrap to multiple lines",
wrap: true
}, {
value: "This text will not wrap and will overflow",
wrap: false
}]
}]
}]
});
</script>
In this article