sheets.showGridLinesBoolean(default: true)
A Boolean value which indicates if the grid lines of the sheet will be displayed.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
name: "MySheet",
showGridLines: false,
rows: [{
cells: [{
value: "No grid lines"
}]
}]
}]
});
</script>
In this article