We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
how it is possible to style the first row?
i´d try this
const CellOptions = { font: { name: 'Arial', sz: 10, bold: true, color: { rgb: "FFFFFFFF" } }, fill: { bgColor: { rgb: "FF59AB44" }, fgColor: { rgb: "FF59AB44" }, }, alignment: { wrapText: true }, }; WS['A1'].s = CellOptions;
but what i do for A1 i need A1 to K1
Thanks you
The text was updated successfully, but these errors were encountered:
If you know the extent, you can iterate over each cell, e.g. "ABCDEFGHIJK".split('').forEach(c=>WS[c+'1'].s = CellOptions)
"ABCDEFGHIJK".split('').forEach(c=>WS[c+'1'].s = CellOptions)
Sorry, something went wrong.
No branches or pull requests
Hi guys,
how it is possible to style the first row?
i´d try this
but what i do for A1 i need A1 to K1
Thanks you
The text was updated successfully, but these errors were encountered: