如何在jfreechart 柱图柱子上显示对应数值

       
/**

**QQ:252574345

**MSN:[email protected]

*/

  CategoryPlot categoryplot = (CategoryPlot)chart.getPlot();

 

 StackedBarRenderer3D stackedbarrenderer = (StackedBarRenderer3D)categoryplot.getRenderer();

 

stackedbarrenderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator()  );

 

当然,和前面的介绍一样,也可以对显示的数值进行格式化,例如

 

//new StandardCategoryItemLabelGenerator("{2}",new DecimalFormat("0.0%"))

 

可以在柱子上显示名称,数值,比例等信息

你可能感兴趣的:(qq,jfreechart)