本文整理汇总了Java中org.jfree.chart.title.LegendTitle.getItemContainer方法的典型用法代码示例。如果您正苦于以下问题:Java LegendTitle.getItemContainer方法的具体用法?Java LegendTitle.getItemContainer怎么用?Java LegendTitle.getItemContainer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.title.LegendTitle
的用法示例。
在下文中一共展示了LegendTitle.getItemContainer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPieChart
import org.jfree.chart.title.LegendTitle; //导入方法依赖的package包/类
public String getPieChart(String type , String title , Map hashMap , Date startDate , Date endDate) {
CHARTS_PATH = "C://" + type + startDate.getTime()+endDate.getTime()+".jpg";
File file = new File(CHARTS_PATH);
if(file.exists()){
file.delete();
}
try {
DefaultPieDataset dataset = new DefaultPieDataset();
for(Object o : hashMap.keySet()){
dataset.setValue(String.valueOf(o), Integer.parseInt((String) hashMap.get(o)));
}
JFreeChart chart = ChartFactory.createPieChart3D( title, // 图表标题
dataset, // 绘图数据集
false, // 设定是否显示图例
false, // 设定是否显示图例名称
false); // 设定是否生成链接
chart.setAntiAlias(false);
PiePlot pieplot = (PiePlot)chart.getPlot();
pieplot.setLabelFont(new Font("宋体", 0, 15));
pieplot.setNoDataMessage("NO DATA!");
pieplot.setCircular(true);
pieplot.setLabelGap(0.02D);
pieplot.setBackgroundPaint(new Color(199,237,204));
pieplot.setLabelGenerator(new StandardPieSectionLabelGenerator(
"{0} {2}",
NumberFormat.getNumberInstance(),
new DecimalFormat("0.00%")));
pieplot.setForegroundAlpha(0.6f);
LegendTitle legendtitle = new LegendTitle(chart.getPlot());
legendtitle.setWidth(100D);
BlockContainer blockcontainer = new BlockContainer(new BorderArrangement());
blockcontainer.setBorder(new BlockBorder(1.0D, 1.0D, 1.0D, 1.0D));
LabelBlock labelblock = new LabelBlock("Percent:", new Font("宋体", 1, 16));
labelblock.setPadding(5D, 5D, 5D, 5D);
blockcontainer.add(labelblock, RectangleEdge.TOP);
BlockContainer blockcontainer1 = legendtitle.getItemContainer();
blockcontainer1.setPadding(2D, 10D, 5D, 2D);
blockcontainer.add(blockcontainer1);
legendtitle.setWrapper(blockcontainer);
legendtitle.setPosition(RectangleEdge.RIGHT);
legendtitle.setHorizontalAlignment(HorizontalAlignment.LEFT);
chart.addSubtitle(legendtitle);
chart.setBackgroundPaint(new Color(199,237,204));
TextTitle pcTitle = chart.getTitle();
pcTitle.setFont(new Font("汉真广标", Font.BOLD, 21));
pcTitle.setPaint(Color.RED);
ChartUtilities.saveChartAsJPEG(file, chart, CHARTS_WIDTH, CHARTS_HEIGHT);
} catch (Exception e) {
e.printStackTrace();
}
return CHARTS_PATH;
}