在jFreeCharts中垂直显示堆积条形图的列键

时间:2013-05-01 11:34:56

标签: jfreechart

我正在使用jfreecharts开发一个javaEE应用程序。我使用stackedBarChart成功显示了我的数据,但是列键(Y轴标签)没有完全显示,因为它们太大了。我怎样才能垂直显示它们?谢谢你的建议

1 个答案:

答案 0 :(得分:3)

您可以像setCategoryLabelPositions()一样使用CategoryPlot plot = (CategoryPlot) chart.getPlot(); CategoryAxis domainAxis = plot.getDomainAxis(); domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_90));

{{1}}