BIRT:表组中的交替行颜色

发布于 2024-07-14 04:56:17 字数 137 浏览 7 评论 0原文

有人知道突出显示条件必须是什么样子才能在组中创建交替行吗? 我希望表组(而不是整个表)中偶数的每一行具有不同的颜色。

提前致谢! :-)

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

水波映月 2024-07-21 04:56:17

像这样向行添加突出显示:

row[0] % 2 Equals 0

这是可行的,因为 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:

row[0] % 2 Equals 0

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)

云朵有点甜 2024-07-21 04:56:17

对于 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.

零度° 2024-07-21 04:56:17

Total.runningCount()%2 等于 0

Total.runningCount()%2 Equals 0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文