gpt4 book ai didi

Java jasper 报告 valueAxis 位置

转载 作者:太空宇宙 更新时间:2023-11-04 07:38:19 28 4
gpt4 key购买 nike

我想将 valueAxis(bar) 更改为位于堆叠栏的右侧。我正在努力改变它,因为一旦我改变位置,我就会改变方向。

请在下面找到我的来源

<barPlot>
<plot orientation="Horizontal">
<seriesColor seriesOrder="0" color="#FFFF80"/>
<seriesColor seriesOrder="1" color="#FF8000"/>
<seriesColor seriesOrder="2" color="#F47A00"/>
</plot>
<itemLabel/>
<categoryAxisFormat>
<axisFormat/>
</categoryAxisFormat>
<valueAxisFormat>
<axisFormat/>
</valueAxisFormat>
</barPlot>

最佳答案

您可以将图表定制器添加到图表中以进行修改。了解如何执行此操作:http://mdahlman.wordpress.com/2010/08/18/chart-customizers-1/

更改轴位置所需的命令是 setRangeAxisLocation .

plot.setRangeAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);

所以你的定制器看起来像这样:

public class myCustomizer implements JRChartCustomizer {
public void customize(JFreeChart chart, JRChart jasperChart) {
CategoryPlot plot = (CategoryPlot) chart.getPlot();
plot.setRangeAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
}
}

关于Java jasper 报告 valueAxis 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16458279/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com