-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Positioning/aligning table to the right side of a page #1318
Comments
Table alignment is problematic because there is #72, but can be used workaround: var dd = {
content: [
{
columns: [
{ width: '*', text: '' },
{
width: 'auto',
table: {
body: [
['Column 1', 'Column 2', 'Column 3'],
['One value goes here', 'Another one here', 'OK?']
]
}
}
]
}
]
} |
Greate. Thank you for the workaround |
Thank you, this worked for me. |
Thank you, works! |
Also you can use
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I need to align a table to the right side of a page, is this possible with pdfmake?
The text was updated successfully, but these errors were encountered: