legend « BarChart « JFreeChart Q&A





1. Chart Legend and Names in bar chart    jfree.org

Re: Chart Legend and Names in bar chart by david.gilbert Fri Sep 02, 2005 11:25 am slizz wrote:2. How does one display the category names inside the bar when using the bar chart You can do it with an item label generator. Here is a demo that I will add to the collection of 100+ demos that are included with ...

2. How to put Legend on right / east side of a bar chart    jfree.org

The trick is to know that JFreeChart has a special title field (always a TextTitle) that is always drawn first (unless it is null). Then it has a list of subtitles (the legend is just one of these) that are drawn in the order that they were added to the chart. To get the alignment for your title and subtitle to ...

3. Bar Chart Legend Customization    jfree.org

4. Bar chart with Legend ?    jfree.org

6. Formating legend in BarChart (new line for each series)    jfree.org

Im having a bit of trouble figuring out how to specify placement for the labels of different series in the legend "list". I want to do this because I have five series with quite long descriptions, this leads to four of them getting a new line in the legend and two shearing. This would look a lot better if I was ...

7. BarChart legend and Y-axis size    jfree.org

Hello, I'm trying to increase the size of the number (0->100) on the Y-axis and the size of colored boxes/shapes in the legend as you can see in this picture: emmanuel.lebel.free.fr/exchange/ftp/3371563802233760414.jpg (sorry but i'm not allowed to post urls) Here is my code: Code: Select all // column keys... String category = ""; // create the dataset... DefaultCategoryDataset dataset = new ...

8. when displaying subtitleof bar chart, legend is getting off.    jfree.org

Hi all, when I displayed Subtitles of the bar chart, the legend is getting missed. Before adding subtitle to chart, it was shown the legend by default. Even I increased the size of the chart. But not worked out. The legend is not coming. And when I added Legend to chart by using chart.addLegend() method, the legend is dispalying on the ...

9. BarChart totals in the legend using {0} and {1}...?    jfree.org

Hi, I have a lovely bar graph rendering on the screen. In the legend, beside each series name, I would like to have the total. I tried this: final CategoryPlot plot = (CategoryPlot)chart.getPlot(); final BarRenderer renderer = (BarRenderer)plot.getRenderer(); render.setLegendItemLabelGenerator(new StandardCategorySeriesLabelGenerator("{0} ({1})")); But all I get is this: Foo {1} Bar {1} Can anyone help me? Thanks -=bootlaces=-





10. How to view Legend Labels as per defined format in Bar Chart    jfree.org

Hi Everyone, I am a newbie in JfreeChart. I have created a bar chart. I am trying to display the legend labels in a format wherein I can view the series name as well the actual value or percentage of the values for respective series. The code that I have used for this purpose is as follows: renderer.setLegendItemLabelGenerator(new StandardCategorySeriesLabelGenerator("{0} - {1}")); ...

11. Put Legend on the bars    jfree.org

12. Barchart - need to hide bars frm chart and legend if value=0    jfree.org

Hi All, I have implemented a bar chart using Jfreechart and in that chart I have 8 bars. most of the time the non zero values come for few bars not for all. The problem that I have is that the zero values bars are also taking a space in the chart and they do appear in the legend too. I ...

13. Adding a legend to a bar chart    jfree.org

public LegendItemCollection getLegendItems() { LegendItemCollection collection = new LegendItemCollection(); LegendItem item = new LegendItem("label1", null, null, null, new Rectangle2D.Double(0, 0, 12, 12), Color.decode("0x00ff00")); collection.add(item); ...

15. Unable to get legend in simple bar chart    jfree.org

public LegendItemCollection getLegendItems() { LegendItemCollection collection = new LegendItemCollection(); LegendItem item = new LegendItem("label1", null, null, null, new Rectangle2D.Double(0, 0, 12, 12), Color.decode("0x00ff00")); collection.add(item); item = new LegendItem("label2", null, ...

16. Legends Alternate colors and BarChart Base color    jfree.org

Hi, i am creating bar charts using jfreechart. I am having following problems. Can anyone help me out. 1- While creating legends, It want to use alternate colors in alternate legends items background. How can i do that? 2- In Bar Graph i want to change the color of the base of the charts CategoryPlot? How can i do that? thanks, ...





17. Subtitles and Legend on a Bar Chart    jfree.org

I have a bar chart and would like a legend and a couple subtitles. If you run this code, you'll get a NPE on the line that reads: LegendTitle legendTitle2 = chart.getLegend(); Code: Select all JFreeChart chart = ChartFactory.createBarChart( ...