使用JFreeChart 生成一个三维的柱状图,无法显示中文的标题。
JFreeChartchart=ChartFactory.createBarChart3D("柱状图",//charttitle"个数no","类别no",dataset...
JFreeChart chart = ChartFactory.createBarChart3D(
"柱状图", // chart title
"个数no",
"类别no",
dataset, // data
PlotOrientation.VERTICAL ,
false, // include legend
true,
false
);
中文的title不能显示,如柱状图三个字不能显示,横轴和纵轴都只能显示no。发现改成英文可以显示的,如chart.setTitle(new TextTitle("testtesttitle"));。添加语句//chart.setTitle(new TextTitle("柱状图柱状图",new Font("宋体",Font.BOLD+Font.ITALIC,20)));程序会报错说The constructor TextTitle(String, Font) is undefined 求大神解答。。。 展开
"柱状图", // chart title
"个数no",
"类别no",
dataset, // data
PlotOrientation.VERTICAL ,
false, // include legend
true,
false
);
中文的title不能显示,如柱状图三个字不能显示,横轴和纵轴都只能显示no。发现改成英文可以显示的,如chart.setTitle(new TextTitle("testtesttitle"));。添加语句//chart.setTitle(new TextTitle("柱状图柱状图",new Font("宋体",Font.BOLD+Font.ITALIC,20)));程序会报错说The constructor TextTitle(String, Font) is undefined 求大神解答。。。 展开
1个回答
展开全部
你调用这个方法试试看~
//设置乱码字体的,获得相关
public static void getChartTheme(){
StandardChartTheme theme = new StandardChartTheme("unicode") {
public void apply(JFreeChart chart) {
chart.getRenderingHints().put(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
super.apply(chart);
}
};
theme.setExtraLargeFont(new Font("宋体", Font.PLAIN, 20));
theme.setLargeFont(new Font("宋体", Font.PLAIN, 14));
theme.setRegularFont(new Font("宋体", Font.PLAIN, 12));
theme.setSmallFont(new Font("宋体", Font.PLAIN, 10));
ChartFactory.setChartTheme(theme);
}
//设置乱码字体的,获得相关
public static void getChartTheme(){
StandardChartTheme theme = new StandardChartTheme("unicode") {
public void apply(JFreeChart chart) {
chart.getRenderingHints().put(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
super.apply(chart);
}
};
theme.setExtraLargeFont(new Font("宋体", Font.PLAIN, 20));
theme.setLargeFont(new Font("宋体", Font.PLAIN, 14));
theme.setRegularFont(new Font("宋体", Font.PLAIN, 12));
theme.setSmallFont(new Font("宋体", Font.PLAIN, 10));
ChartFactory.setChartTheme(theme);
}
TableDI
2024-07-18 广告
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询