AW: [reportlab-users] table problem
Christoph Zwerschke
zwerschke at zuv.uni-heidelberg.de
Wed Mar 8 05:57:54 EST 2006
Mike, I think the problem is that you try to create a Table instance
with the following line:
klass(data, style)
where klass = Table. But Table needs two other parameters, "colWidths"
and "rowHeights" before "style". So you should pass "style" as a named
parameter, not positional, like that:
klass(data, style=style)
Maybe this will already solve your problem.
-- Christoph
More information about the reportlab-users
mailing list