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
上記の関数で次元を上げようとしましたが、うまくいきません。任意の入力をいただければ幸いです。