Can anyone tell me how to remove seriesOutlines from charts
Thank You
seriesOutlines
Re: seriesOutlines
Do you mean the legend? That is, the box that shows the series color and name, that appears at the bottom of the chart by default. You can remove it with:
myChart.setLegend(null);
Regards,
DG
myChart.setLegend(null);
Regards,
DG
Re: seriesOutlines
I think he means bar chart borders etc ...
There happen strange color effects when AntiAlias is turned on especially if you plot lots of thin bar charts (dayplots with Minute.Class Timeseries try green:-))
JfreeChart.setAntiAlias(false) solved the prob for me
Sebastian
There happen strange color effects when AntiAlias is turned on especially if you plot lots of thin bar charts (dayplots with Minute.Class Timeseries try green:-))
JfreeChart.setAntiAlias(false) solved the prob for me
Sebastian