showGridLines

Gets or sets a flag indicating if the grid lines should be visible.

Parameters

showGridLines Boolean optional

If passed, the method will toggle the display of the grid lines according to the value.

Returns

Boolean True if the grid lines are currently visible, false otherwise.

Example

<div id="spreadsheet"></div>
<script type="text/javascript" charset="utf-8">
    $("#spreadsheet").kendoSpreadsheet();
    var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet");
    var sheet = spreadsheet.activeSheet();

    sheet.showGridLines(false);
</script>
In this article