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

Auto width

Open vencho-mdp opened this issue 2 years ago • 1 comments

Hi! Firstly, thanks for this library!

One cool feature that could be added is the ability to adjust the cell width to the text. I'd be willing to do it if you could explain a little bit about where I could start.

vencho-mdp avatar Oct 08 '22 22:10 vencho-mdp

You can set the col width like this

var wscols = [
    {wch:6},
    {wch:7},
    {wch:10},
    {wch:20}
];

ws['!cols'] = wscols;

khoa-nv avatar Nov 16 '22 09:11 khoa-nv