本文整理匯總了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;
}