js-xlsx icon indicating copy to clipboard operation
js-xlsx copied to clipboard

Style Gridlines not working

Open surya270696 opened this issue 5 years ago • 1 comments

I had written {showGridLines : false}, in the options while creating the worksheet in javascript. It did not get implemented in the excel document

surya270696 avatar May 28 '20 10:05 surya270696

could you please provide workbook creation and writing portion of the code? I tried the following and it works for me. Hope this helps!

var XLSX = require('./xlsx'); var INFILE = 'tmp/file.xlsx'; var OUTFILE = 'tmp/file-styling.xlsx'; var filedata = XLSX.readFile(INFILE); XLSX.writeFile(filedata, OUTFILE, {showGridLines: false});

RimaCiklum avatar Aug 07 '20 09:08 RimaCiklum