-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Sheet API - rows and cells #6
Comments
Could also do: var options = {
cellTemplates: {
warningCell: {
style: {
font: {
bold: true
},
fill: {
fgColor: { rgb: 'FFFF0000' }
}
}
}
}
};
wb.createSheet('Abutters', options)
.row()
.warningCell('Important: Do this!')
.row()
.cell('Eat your breakfast!')
.finalize(); |
Agree, that's a great idea. On Fri, Mar 6, 2015 at 1:56 PM, Ilya Radchenko [email protected]
Pieter Sheth-Voss PhD protobi |
I made my own little wrapper for basic table like spreadsheets with multiple sheets and headers: |
Would be nice to have an API like:
Or something similar. This could make it open to things like
currencyCell(value, format)
or other cell types.The text was updated successfully, but these errors were encountered: