Tagged Questions
2
votes
2answers
103 views
Looping through a table in python reportlab
I am creating a table using the python module reportlab. In this table, I would like to loop through and have a different background color depending on the values of any particular cell.
To do this, ...
2
votes
1answer
1k views
How to vertically align Paragraphs within a Table using Reportlab?
I'm using Reportlab to generate report cards. The report cards are basically one big Table object. Some of the content in the table cells needs to wrap, specifically titles and comments, and I also ...
1
vote
0answers
146 views
Reportlab: use Table and SPAN
Example:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from reportlab.platypus import SimpleDocTemplate, Table, TableStyle
from reportlab.lib.pagesizes import letter
def testPdf():
doc = ...
1
vote
1answer
637 views
Python Reportlab RML. How to split table row on 2 pages
I'm wondering if there is some functionality to split table row on 2 and more pages. Cause some information in row can be too long for one page. And if one row longer then page size then it's cause an ...