设置具有标题和细节带的jasper子报告的边框

时间:2013-08-12 10:37:17

标签: jasper-reports border dynamic-jasper

我正在开发一个grails项目,该项目使用jasper插件以pdf和doc格式下载文档。

我有几个jasper子报表,并在动态jasper中使用这些子报表以pdf和docx格式下载文档。我正在使用动态jasper报告,因为jasper子报告的位置可能会有所不同。

我的jasper子报告有一个标题和一个细节带。

enter image description here

输出

enter image description here

现在我的问题是边界。需要边框,如:

enter image description here

我尝试设置矩形,框架,但都失败了,因为两个乐队没有共享一个上腭(组件)。

我的要求是通过jasper报告或动态jasper的边框。我不知道如何设置边框。

修改........................................... .............................

我还尝试通过动态jasper代码使用框架和矩形设置边框,输出为:

enter image description here

框架和矩形不覆盖整个子报表。这是我的代码:

JRDesignRectangle rectangle = new JRDesignRectangle();
//JRDesignFrame rectangle = new JRDesignFrame();
rectangle.setX(subReport.getX());
rectangle.setY(subReport.getY());
rectangle.setHeight(subReport.getHeight());
rectangle.setWidth(subReport.getWidth());
rectangle.setPositionType(PositionTypeEnum.FLOAT);
band.addElement(rectangle);

2 个答案:

答案 0 :(得分:3)

如果您使用的是jasper报告插件,则可以打开JRXML文件并说出类似

的内容
 <box>
        <topPen lineWidth="1.0"/>
        <leftPen lineWidth="1.0"/>
        <bottomPen lineWidth="1.0"/>
        <rightPen lineWidth="1.0"/>
    </box>

Jasper的报告中有一位名叫“IReport Designer”的优秀设计师。你可以使用概念 在IReport设计器中frames并将您的子报告放在框架内,然后应用边框 框架本身的属性。您还可以找到有用的BorderAroundTable。我会 绝对推荐这些链接。

How to add border to a subreport

Frame Around Two Subreports

Border In Jasper Report

如果此解决方案适合您,请告诉我们。

如果它可以用于具有摘要和页眉的子报表,那么它也可以帮助您的情况。

编辑和添加包含边框的主报告和子报告代码

主报告源代码

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="testborder" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20">
    <property name="ireport.zoom" value="1.0"/>
    <property name="ireport.x" value="0"/>
    <property name="ireport.y" value="0"/>
    <background>
        <band splitType="Stretch"/>
    </background>
    <detail>
        <band height="421" splitType="Stretch">
            <subreport>
                <reportElement x="25" y="148" width="200" height="100"/>
                <dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.JREmptyDataSource()]]></dataSourceExpression>
                <subreportExpression><![CDATA["C:\\jaspersamples\\testborder_subreport1.jasper"]]></subreportExpression>
            </subreport>
            <frame>
                <reportElement x="45" y="119" width="390" height="176"/>
                <box>
<topPen lineWidth="2.0" lineStyle="Solid"/>
<leftPen lineWidth="2.0" lineStyle="Solid"/>

                    <bottomPen lineWidth="2.0" lineStyle="Solid"/>
                    <rightPen lineWidth="2.0" lineStyle="Solid"/>
                </box>
            </frame>
        </band>
    </detail>
</jasperReport>

子报告源代码

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="testborder_subreport1" language="groovy" pageWidth="802" pageHeight="555" orientation="Landscape" whenNoDataType="AllSectionsNoDetail" columnWidth="802" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0">
    <property name="ireport.zoom" value="1.0"/>
    <property name="ireport.x" value="0"/>
    <property name="ireport.y" value="0"/>
    <background>
        <band splitType="Stretch"/>
    </background>
    <pageHeader>
        <band height="29" splitType="Stretch">
            <staticText>
                <reportElement x="317" y="5" width="100" height="20"/>
                <textElement/>
                <text><![CDATA[HELLO TEST]]></text>
            </staticText>
        </band>
    </pageHeader>
    <summary>
        <band height="29" splitType="Stretch">
            <staticText>
                <reportElement x="317" y="0" width="100" height="20"/>
                <textElement/>
                <text><![CDATA[i am testing BORDER]]></text>
            </staticText>
        </band>
    </summary>
</jasperReport>

输出有点像这样

enter image description here

答案 1 :(得分:0)

您可以使用IReport或Jaspersoft Studio将子报表包含在框架中。 Jaspersoft Studio 的步骤:

  1. 选择主报告并打开“大纲视图”
  2. 找到子报表元素,然后右键单击它。
  3. 选择封闭到框架中。
  4. 打开框架元素的属性。
  5. 转到“边框”选项卡,然后选择所需的边框选项。