You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Add ability to show and hide grid lines in a spreadsheet. This can be done via batch_update using the following request body:
Additional context
There's a similar feature request about hiding rows/columns (#1006), which is solved in a pull request #1012. With hiding gridlines there are only two differences:
batch_update body is updateSheetProperties, not updateDimensionProperties
hide and unhide should be methods of a Spreadsheet class, not a Worksheet
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Add ability to show and hide grid lines in a spreadsheet. This can be done via batch_update using the following request body:
Docs for gridProperties: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/sheets#GridProperties
Additional context
There's a similar feature request about hiding rows/columns (#1006), which is solved in a pull request #1012. With hiding gridlines there are only two differences:
updateSheetProperties
, notupdateDimensionProperties
hide
andunhide
should be methods of aSpreadsheet
class, not aWorksheet
The text was updated successfully, but these errors were encountered: