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
Tried this, { table:{ widths:['50%','50%'], body:[[{},{border:[], text:''}], [{border:[],colSpan:2, text:''}]] } }
{ table:{ widths:['50%','50%'], body:[[{},{border:[], text:''}], [{border:[],colSpan:2, text:''}]] } }
but this does not work, as it generated border at bottom right
The text was updated successfully, but these errors were encountered:
Other issue with borders and columnspan.
Pdfmake version: 0.2.16
Use the attached file to generate a pdf with two tables. colspan-bug.json
The first table contains a colspan = 3 in the first row, border is set to [false, false, false, true]. Snippet:
{ { "text": "Zeitraum", "bold": true, "alignment": "center", "border": [ false, false, false, true ], "colSpan": 3 }, { }, { } }
resulting in:
The second table has no column span. Snippet:
{ { "text": "Zeitraum", "bold": true, "alignment": "center", "border": [ false, false, false, true ], }, { "text": "", "bold": true, "alignment": "center", "border": [ false, false, false, true ], }, { "text": "", "bold": true, "alignment": "center", "border": [ false, false, false, true ] } }
Resulting in
Sorry, something went wrong.
No branches or pull requests
Tried this,
{ table:{ widths:['50%','50%'], body:[[{},{border:[], text:''}], [{border:[],colSpan:2, text:''}]] } }
but this does not work, as it generated border at bottom right
The text was updated successfully, but these errors were encountered: