Search found 4 matches

by flembo
Thu Dec 23, 2004 12:05 pm
Forum: JFreeChart
Topic: Hide certain series in the legend
Replies: 5
Views: 11482

If you are using CategoryPlot or XYPlot you can use the setFixedLegendItems(LegendItemCollection items) method
by flembo
Thu Dec 02, 2004 11:25 am
Forum: JFreeChart
Topic: Item value display problem
Replies: 5
Views: 3925

There is nothing wrong with the code. It compiles and runs perfectly, the setItemLabelsVisible(boolean) method is implemented in the AbstractRenderer. The XYBarRenderer extends the AbstractXYItemRenderer which again extends the AbstractRenderer so the method is provided
by flembo
Fri Nov 19, 2004 11:09 am
Forum: JFreeChart
Topic: Item value display problem
Replies: 5
Views: 3925

Sorry! Forgot to log in :)
by flembo
Fri Nov 19, 2004 8:32 am
Forum: JFreeChart
Topic: Item value display problem
Replies: 5
Views: 3925

Item value display problem

I have a chartapplet drawing both bars and lines. I'm using a XYBarRenderer for the bars and a StandardXYItemRenderer for the lines. I want to to display ItemLabels and to do this I use the following code: renderer.setLabelGenerator(new StandardXYLabelGenerator()); renderer.setItemLabelsVisible(true...