我正在尝试使用Python和ReportLab 2.2来创建PDF报告.
根据用户指南,
特殊TableStyle Indeces [原文如此]
在任何样式命令中,第一行索引可以设置为特殊字符串'splitlast'或'splitfirst'之一,以指示该样式应仅用于拆分表的最后一行或延续的第一行.这允许在分割周围分割具有更好效果的表.
我尝试过使用多种样式元素,包括:
('TEXTCOLOR', (0, 'splitfirst'), (1, 'splitfirst'), colors.black) ('TEXTCOLOR', (0, 'splitfirst'), (1, 0), colors.black) ('TEXTCOLOR', (0, 'splitfirst'), (1, -1), colors.black)
这些似乎都不起作用.第一个生成带有消息的TypeError:
TypeError: cannot concatenate 'str' and 'int' objects
后两个生成TypeErrors并带有以下消息:
TypeError: an integer is required
这个功能是完全破坏还是我做错了什么?如果是后者,我做错了什么?