BIRT:表组中的交替行颜色
有人知道突出显示条件必须是什么样子才能在组中创建交替行吗? 我希望表组(而不是整个表)中偶数的每一行具有不同的颜色。
提前致谢! :-)
Patrick
P.S.:我正在使用 BIRT 2.1.3
Has anybody an idea of how the highlighting condition has to look like, to create alternating rows in groups? I want the every row with an even number of a table group (not of the whole table) to have a different color.
Thanks in advance! :-)
Patrick
P.S.: I'm using BIRT 2.1.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样向行添加突出显示:
这是可行的,因为 row 是当前行,而 row[0] 是行号。 row[1]、row[2] 等是当前行的数据值。
(来源:http://dev.eclipse.org/newslists/news。 eclipse.birt/msg03977.html)
Add a highlight to the row like this:
This works because row is the current row and row[0] is the rownumber. row[1], row[2] etc. are the data values for the current row.
(Source: http://dev.eclipse.org/newslists/news.eclipse.birt/msg03977.html)
对于 Birt 2.3 报告
单击大纲视图中的表格。 在属性编辑器中,单击“突出显示”选项卡。 单击添加。 您将看到三个下拉菜单。 只需在第一个下拉列表中输入 row.__rownum % 2 即可。 从第二个中选择“等于”,然后在第三个中键入 0。 然后,将行的背景颜色设置为您想要的任何颜色,大多数时候我使用银色。
点击确定,仅此而已。
For Birt 2.3 reporting
Click on the table from the outline view. The on the properties editor, clikc the Highlight tab. Click Add. You will see three drop downs. Just type row.__rownum % 2 in the first drop down. Select the Equal to from the second and then type 0 in the third. Then you set the background color of the row to whatever color you want most times I use silver.
Hit ok and thats all.
Total.runningCount()%2 等于 0
Total.runningCount()%2 Equals 0