关于JFreechart 3D饼图 标签如何显示到饼图上
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于JFreechart 3D饼图 标签如何显示到饼图上相关的知识,希望对你有一定的参考价值。
我也在做jfreechart画饼图,请问你怎么将 标签中的内容 “软件架构师”都是横向显示的,我的图画出来,标签的大小都是固定的 参考技术A 我记得有个属性,仔细找找吧更改 jfreechart 的域轴标签和范围轴标签的字体大小
【中文标题】更改 jfreechart 的域轴标签和范围轴标签的字体大小【英文标题】:Change font-size of domain axis label and range axis label for jfreechart 【发布时间】:2014-02-19 12:20:30 【问题描述】:我的目标是增加“Revenue ($)”和“Years”的大小。但是我不知道怎么做。我可以增加“Apples, Durians,Oranges”和“2012, 2013”。
以下是我的代码。
JFreeChart chart = ChartFactory.createBarChart3D("", // chart title
"Years", // domain axis label
"Revenue ($)", // range axis label
dataset, // data
PlotOrientation.VERTICAL, // orientation
false, // include legend
false, // tooltips
false);
CategoryPlot plot = chart.getCategoryPlot();
CategoryAxis axis = plot.getDomainAxis();
CategoryPlot p = chart.getCategoryPlot();
ValueAxis axis2 = p.getRangeAxis();
Font font = new Font("Dialog", Font.PLAIN, 25);
axis.setTickLabelFont(font);
Font font2 = new Font("Dialog", Font.PLAIN, 15);
axis2.setTickLabelFont(font2);
LegendTitle legend = new LegendTitle(plot.getRenderer());
Font font3 = new Font("Dialog", Font.PLAIN, 20);
legend.setItemFont(font3);
legend.setPosition(RectangleEdge.BOTTOM);
chart.addLegend(legend);
【问题讨论】:
找到答案的最快方法是阅读 API 文档 (jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/…) 并扫描所有 setXXX() 方法(包括继承的方法)。 setLabelFont() 应该是值得一试的。 另见Help with font size please。 【参考方案1】:使用
CategoryPlot plot = chart.getCategoryPlot();
Font font3 = new Font("Dialog", Font.PLAIN, 25);
plot.getDomainAxis().setLabelFont(font3);
plot.getRangeAxis().setLabelFont(font3);
【讨论】:
以上是关于关于JFreechart 3D饼图 标签如何显示到饼图上的主要内容,如果未能解决你的问题,请参考以下文章