Search found 1 match

by vipin.vjayan
Tue Mar 19, 2019 2:53 pm
Forum: JFreeChart
Topic: Hide certain series in the legend
Replies: 5
Views: 11404

Re: Hide certain series in the legend

I use below code to hide certain series based on my application criteria;

Code: Select all

plot.getRenderer().setSeriesVisibleInLegend(seriesIndex, Boolean.FALSE, true);
If above code doesn't work make sure series are set to visible before calling above method.