Search found 5 matches

by rafidwahab
Fri Jun 29, 2012 10:03 pm
Forum: JFreeChart
Topic: TimesSeries: Random Legend Issue where legend text overlaps
Replies: 0
Views: 3544

TimesSeries: Random Legend Issue where legend text overlaps

I have a webapplication that generated TimeSeries Chart and every so often the Legend text for the series overlaps into each other and its not readable. Once this occurs all requests following continue to have the same issue. The only resolution has been to bounce the webapp or server. Has anyone en...
by rafidwahab
Wed Jan 02, 2008 11:14 pm
Forum: JFreeChart
Topic: Remove Temp Files JFreechart Creates
Replies: 0
Views: 2088

Remove Temp Files JFreechart Creates

I am running a batch application that is creating charts and drawing the on PDF using Itext. I see alot of temp files being created and from JFreeChart with signatures like (+~JF57328.tmp). Is there an option I need to specify not to create these temp files (or specify to remove them) as they fill m...
by rafidwahab
Tue Dec 11, 2007 7:27 pm
Forum: JFreeChart
Topic: How do I put a buffer around the chart
Replies: 0
Views: 1632

How do I put a buffer around the chart

When I create a chart with no Right handside Y axis or bottom X Axis or Header Title, the Chart expands to fill that space. I have tried to put " " (blank) values to force so that it maintains the space, but it does not work. I also saw a post where it stated to user Spacer, but it was an old post a...
by rafidwahab
Mon Oct 29, 2007 8:46 pm
Forum: JFreeChart
Topic: Remove Chart's gray border
Replies: 7
Views: 9907

Removing Axis Lines...

Try this for the axis: chart.getXYPlot().getDomainAxis().setAxisLinePaint(Color.WHITE); chart.getXYPlot().getRangeAxis().setAxisLinePaint(Color.WHITE); ValueAxis y2 = jFreeChart.getXYPlot().getRangeAxis(1); if(y2 != null){ y2.setAxisLinePaint(Color.WHITE); } It does not really remove them as much as...
by rafidwahab
Fri Oct 26, 2007 8:08 pm
Forum: JFreeChart
Topic: EMF, CGM, WMF Image Export
Replies: 2
Views: 4128

EMF, CGM, WMF Image Export

Hello,

I am looking to export my chart in CGM EMF/WMF format. Is there a way to do this with JFreeChart or any packages that will allow me to export in these formats.

Thanks,
Rafid