1. Value in Legend 3DBarChart??? Please Help! jfree.org/** * A custom label generator. */ static class LabelGenerator implements CategorySeriesLabelGenerator { public String generateLabel(CategoryDataset dataset, int series) { Number value = dataset.getValue(series, 0); ... |
2. Legend value not visible jfree.orgHello I've done a .jasper file with ireport I've now create a chart. The problem is that when I run the pdf generation under ireport I can see in the legend the description and its value (for each piece of the pie) Now the .japser file is under my webapp but when I generate the pdf the values of the pie's ... |
3. Getting values in Legend jfree.orgHi all, In all the examples i see i see that people have the values in the legend bar aside the name. That doesn't work for me. Anybody an idea? this is my code: if (dataset.getItemCount()!= 0) { //create a chart... JFreeChart chart = ChartFactory.createPieChart3D("Users per Department", dataset, true, // legend? true, // tooltips? false // URLs? ); final PiePlot3D plot ... |
4. How to get values into legends jfree.org |
5. How to localize the legends values(chinese ) in JFreeChart jfree.orgHow to localize the legends values(chinese ) in JFreeChart by Ravikumar Wed May 06, 2009 5:18 pm Hi, My requirement is I have x and y axis units i.e seriesNames are in chinese.. I have passed the unicode characters of the units ( series name ) to XYSeries class. The value is properly shown in JSP page.. But in the ... |