标签: charts jasper-reports report
有没有办法改变JasperReports中图表的分量。默认值是线性的,但我想将其更改为对数。我如何使用JasperReports(XY条形图)图表进行此操作?
答案 0 :(得分:1)
您需要使用图表自定义程序将绘图上的轴更改为LogarithmicAxis。如下所示:
LogarithmicAxis
XYPlot plot = chart.getXYPlot(); plot.setRangeAxis(new LogarithmicAxis("Log(y)"));