多軸グラフの棒グラフと折れ線グラフがあります。私のカスタマイザー クラスには、次のコード スニペットがあります。
@Override
public void customize(final JFreeChart chart, final JRChart jasperChart) {
final Plot plot = chart.getPlot();
if (plot instanceof CategoryPlot) {
final CategoryPlot cPlot = (CategoryPlot) plot;
final ValueAxis axis = new NumberAxis();
axis.setMinorTickMarksVisible(true);
axis.setMinorTickCount(1);
cPlot.setRangeAxis(axis);
} else if (plot instanceof XYPlot) {
final XYPlot xyPlot = (XYPlot) plot;
xyPlot.setRangeMinorGridlinesVisible(true);
}
}
チャートは次のようになります
スケールがめちゃくちゃで、同じライン上にありません。
この問題を解決するにはどうすればよいですか。
どんな助けでも感謝します。
ありがとう