我需要生成如下所示的报告:
我在NetBeans中使用swing设计了一个GUI来输入详细信息:
我使用jFreeChart生成的图:
JFreeChart chart = ChartFactory.createXYLineChart(
"Hysteresis Plot", // chart title
"Pounds(lb)", // domain axis label
"Movement(inch)", // range axis label
dataset, // data
PlotOrientation.VERTICAL, // orientation
false, // include legend
true, // tooltips
false // urls
);
输出:
我在互联网上搜索我可以使用iText或JasperReports或DynamicReports(基于Jasper报告)
http://www.dynamicreports.org/getting_started.html#step9
我发现使用动态报告更容易。我的问题是 - 我可以将DynamicReports用于我的目的(我想 - 是看样本报告),如果是,那么如何将我的jFreeChart导出到报告中。
请帮忙,因为我没有多少时间来完成这个项目。
由于
答案 0 :(得分:1)
您可以直接在DynamicReports而不是JFreeChart中创建图表。使用DynamicReports XYLineChartReport组件执行此操作。请参阅http://www.dynamicreports.org/examples/xylinechartreport.html上的示例代码。
如果要使用JFreeChart输出,请将图表导出到图像,然后使用cmp.image()
将该图像包含在报告中:
// Create the chart.
JFreeChart chart = ChartFactory.createXYLineChart(
"Hysteresis Plot", // chart title
"Pounds(lb)", // domain axis label
"Movement(inch)", // range axis label
dataset, // data
PlotOrientation.VERTICAL, // orientation
false, // include legend
true, // tooltips
false // urls
);
// Export the chart to an image.
BufferedImage image = chart.createBufferedImage( 300, 300);
report()
.title(cmp.text("XYZ HOSPITAL"))
.columns(fieldNameColumn, fieldValueColumn)
.summary(
cmp.verticalList()
.add(cmp.text("HYSTERISIS PLOT"))
.add(cmp.text("A brief description of what this plot signifies"))
.add(cmp.image(image)) // Add the exported chart image to the report.
.add(cmp.text("REMARKS"))
)
.setDataSource(createDataSource())
.toPDF(outputStream);