我正在尝试使用此处描述的方法生成多个图表: How to create multiple charts of same type but with different dataseries using JRBeanCollectionDatasource in Jasperreports
在给定List<List<ChartBean<Double,Double>>
的情况下,我需要在报告中生成多个图表
其中填充了我从文件中获取的数据。
ChartBean声明如下:
public class ChartBean<T,U> {
T xCoordinate;
U yCoordinate;
String series;
public ChartBean(T x,U y,String series) {
this.xCoordinate = x;
this.yCoordinate = y;
this.series = series;
}
public void setxCoordinate(T x) {
this.xCoordinate = x;
}
public void setyCoordinate(U y) {
this.yCoordinate = y;
}
public T getxCoordinate() {
return xCoordinate;
}
public U getyCoordinate() {
return yCoordinate;
}
public String setseries() {
return series;
}
public String getseries() {
return series;
}
}
我通过以下方式将参数传递给模板生成器
parameters.put("XYDataSource", values);
,其中值包含坐标列表的列表。
我得到的是我的应用程序挂起并且没有生成任何报告。我多次检查了XML的内容,这似乎与文章中所描述的一致。我还尝试生成一个图表(不使用列表列表),并且可以正常工作。
我有一个顶级报告,其摘要带包含一个子报告“ sub_charts.xml”。
在其详细信息区域中,我放置了另一个包含折线图的子报表,并使用“ _THIS”字段传递了List<ChartBean<Double,Double>
子报表的内容在这里报告。
sub_charts.jrxml
<?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="subcharts_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="97e07501-37b1-4c04-970b-33f120c8264d">
<parameter name="REPORT_DIR" class="java.lang.String"/>
<field name="_THIS" class="java.util.List">
<fieldDescription><![CDATA[_THIS]]></fieldDescription>
</field>
<detail>
<band height="359">
<subreport>
<reportElement x="22" y="25" width="510" height="320" uuid="6ea2325b-969e-472a-9d49-d5c33667fab5"/>
<dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F{_THIS})]]></dataSourceExpression>
<subreportExpression><![CDATA[$P{REPORT_DIR}+"/sub_chart.jasper"]]></subreportExpression>
</subreport>
</band>
</detail>
sub_chart.jrxml
<?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="subchart_2" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="6cdd6eb2-73da-4026-823b-574910e37c68">
<field name="series" class="java.lang.String"/>
<field name="xCoordinate" class="java.lang.Double"/>
<field name="yCoordinate" class="java.lang.Double"/>
<summary>
<band height="270">
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
<xyLineChart>
<chart evaluationTime="Report">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="555" height="270" uuid="4bfd2379-7617-47fb-9c2a-4eeb0b72eadf"/>
<chartTitle/>
<chartSubtitle/>
<chartLegend/>
</chart>
<xyDataset>
<xySeries autoSort="true">
<seriesExpression><![CDATA[$F{series}]]></seriesExpression>
<xValueExpression><![CDATA[$F{xCoordinate}]]></xValueExpression>
<yValueExpression><![CDATA[$F{yCoordinate}]]></yValueExpression>
</xySeries>
</xyDataset>
<linePlot>
<plot/>
<categoryAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat labelColor="#000000" tickLabelColor="#000000" axisLineColor="#000000"/>
</valueAxisFormat>
</linePlot>
</xyLineChart>
</band>
</summary>