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