Search found 2 matches
- Tue Feb 08, 2005 8:25 pm
- Forum: JFreeChart
- Topic: Hide certain series in the legend
- Replies: 5
- Views: 17166
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...
- Wed Jan 26, 2005 3:25 pm
- Forum: JFreeChart
- Topic: label background color in line chart
- Replies: 1
- Views: 3824
label background color in line chart
Is it possible to set label background color into in line chart ?