How to Show Labels on Graph at JSP/Servlet

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
agohar
Posts: 7
Joined: Tue Mar 28, 2006 4:07 pm

How to Show Labels on Graph at JSP/Servlet

Post by agohar » Tue Feb 13, 2007 6:56 pm

Hi,

I have tried a demo servlet chart application given in Developer Guide but when i tried to show the lables, it is not showing them on graph. I can show them using Applet but not with Servlet/JSP. does anybody has any idea?
I have tried this code
CategoryPlot plot = (CategoryPlot) chart.getPlot();
plot.getRenderer().setItemLabelGenerator(new CustomItemLabelGenerator());

I have written my own ItemLabelGenerator which extends AbstractCategoryItemLabelGenerator and implements CategoryItemLabelGenerator

Thanks

Locked