是否可以垂直“合并”行以使报表看起来更整洁?如下所示:
+-----------+--------+--------------+
| Tbl Hdr | Group | User |
+-----------+--------+--------------+
|Very long | [User] | [Reputation] |
|description+--------+--------------+
|of the | [User] | [Reputation] |
|group +--------+--------------+
| | | |
+-----------+--------+--------------+
代替:
+-----------+--------+--------------+
| Tbl Hdr | Group | User |
+-----------+--------+--------------+
|Very long | [User] | [Reputation] |
|description| | |
|of the | | |
|group | | |
+-----------+--------+--------------+
| | [User] | [Reputation] |
+-----------+--------+--------------+
| | | |
+-----------+--------+--------------+
我可以在报表中使用jQuery代码合并,但是当然只能在HTML中工作。
我无法在Excel中找到解决方案,可能是我不知道的一些技巧。或者以某种方式我可以在Java代码中的IRunTask run()之后按代码合并单元格。
Iam使用Eclipse BIRT Designer版本4.3.2.v20140211-1400 Build
谢谢阅读。
最佳答案
我认为您需要在表中使用分组功能。
教程之一在这里:http://developer.actuate.com/be/documentation/ihub2-web/birtos/fg44/index.html#page/birt-os/grouping.1.16.html
Google使用关键字“BIRT table grouping”来更多地使用它,也不要忘记在组标题单元格中使用“Drop detail”。在您的情况下,它将是包含“很长描述”文本的单元格。
关于excel - 在BIRT上的表格详细信息中垂直合并单元格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23946231/