我正在创建一个JFreeChart
并传递它以显示在 Jasper pdf 报告上。这是我创建图表的代码
JFreeChart chart = ChartFactory.createLineChart(
null, // chart title
null, // domain axis label
scale + " Range", // range axis label
dataset, // data
PlotOrientation.VERTICAL, // orientation
false, // include legend
true, // tooltips
false // urls
);
parameters.put("chartpath", chart.createBufferedImage(1600, 800));
该图表在 pdf 报告中显示非常小并且不可读。我试图增加上述createBufferedImage
函数中的尺寸,但它不起作用。任何输入将不胜感激。