//设置字体
CategoryAxis domainAxis = plot.getDomainAxis();
//X轴Label
domainAxis.setLabelFont(new Font("宋体", Font.BOLD, 16));
//X轴Tick
domainAxis.setTickLabelFont(new Font("宋体", Font.PLAIN, 12));
//Series
LegendTitle legendTitle = chart.getLegend();
legendTitle.setItemFont(new Font("宋体", Font.BOLD, 16));
//图表主标题
TextTitle title = chart.getTitle();
title.setFont(new Font("宋体", Font.BOLD, 16));
参考:1、http://blog.csdn.net/kinble/archive/2009/05/06/4155085.aspx
2、http://hi.baidu.com/wodehao1985h/blog/item/a27a2151ba43106a853524aa.html