seriesOutlines

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Tom

seriesOutlines

Post by Tom » Tue Nov 05, 2002 7:43 pm

Can anyone tell me how to remove seriesOutlines from charts

Thank You

Dave Gilbert

Re: seriesOutlines

Post by Dave Gilbert » Wed Nov 06, 2002 6:50 pm

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

sebastian

Re: seriesOutlines

Post by sebastian » Fri Nov 08, 2002 11:25 am

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

Locked