我正在使用jfreecharts开发一个javaEE应用程序。我使用stackedBarChart成功显示了我的数据,但是列键(Y轴标签)没有完全显示,因为它们太大了。我怎样才能垂直显示它们?谢谢你的建议
答案 0 :(得分:3)
您可以像setCategoryLabelPositions()
一样使用CategoryPlot plot = (CategoryPlot) chart.getPlot();
CategoryAxis domainAxis = plot.getDomainAxis();
domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_90));
。
{{1}}