showGridLines for printing not working
See original GitHub issueI create a worksheet with this code: const worksheet = workbook.addWorksheet(sheetName, { pageSetup: { showGridLines: true, fitToPage: true, fitToWidth: 1, fitToHeight: 0, orientation: 'landscape', horizontalCentered: true, printTitlesRow: '1:1', } } );
But when I print the excel downloaded, there are no gridLines.
I have tried with every showGridLine properties without success.
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
How to Fix “Excel Not Printing Gridlines”?
Simply go to the Sheets Options group on the PAGE LAYOUT tab and check the Print box under Gridlines. Yes, it is that...
Read more >Unable to get rid of gridlines when printing in Excel 2013.
Hello - I have tried everything to get the gridlines in my worksheet not to display when printing. I have tried: 1) View...
Read more >How to Show Grid Lines When Printing in Microsoft Excel
How to Show Grid Lines When Printing in Microsoft Excel · 1. Select the worksheet or worksheets you want to print, and then...
Read more >How to Hide, Show, and Print Gridlines in Microsoft Excel
Whatever your scenario, we'll show you how to work with the gridlines in Excel to show, hide, print, or not print them.
Read more >Gridlines in Excel - How to Remove it, Change it, and Print it
Working with Gridlines in Excel: How to Add, Remove, Change, and Print Gridlines · How to Remove Gridlines in Excel Worksheets · How...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
if you want to control whether gridLines are showed in
View
mode, you should set it withviews
(array) property:in
Print
mode, you should set it withpageSetup
(object) property:this cod:
worksheet.pageSetup.showGridLines = true;
not work