Search found 2 matches

by logimine
Tue Feb 08, 2005 8:25 pm
Forum: JFreeChart
Topic: Hide certain series in the legend
Replies: 5
Views: 11432

setFixedLegendItems() and CombinedDomainCategoryPlot

It ' s easier to remove items in the LegendItemCollection : LegendItemCollection legend = plot.getLegendItems(); Iterator iterator=legend.iterator(); while(iterator.hasNext()){ LegendItem item=(LegendItem)iterator.next(); if(item.getLabel().equals("serie name")) iterator.remove(); } plot.setFixedLeg...
by logimine
Wed Jan 26, 2005 3:25 pm
Forum: JFreeChart
Topic: label background color in line chart
Replies: 1
Views: 2449

label background color in line chart

Is it possible to set label background color into in line chart ?