Search found 9 matches
- Sun May 17, 2009 9:25 am
- Forum: JFreeChart
- Topic: JFreeChart & SWT - How to redraw?
- Replies: 2
- Views: 5936
Re: JFreeChart & SWT - How to redraw?
Setting a new Dataset on your JFreeChart's Plot should redraw the ChartComposite.
- Thu Jan 22, 2009 4:21 pm
- Forum: JFreeChart
- Topic: How to place text inside a ring chart
- Replies: 0
- Views: 2003
How to place text inside a ring chart
Hi, I have a ring chart and I would like to show a piece of text right at the center of the ring plot. Is this possible?
- Fri Nov 28, 2008 10:15 pm
- Forum: JFreeChart
- Topic: Release Plan for JFreeChart 1.2?
- Replies: 3
- Views: 3834
- Fri May 30, 2008 9:01 am
- Forum: JFreeChart
- Topic: Problem with disposal of ChartComposite object
- Replies: 5
- Views: 7696
- Wed Mar 26, 2008 4:57 pm
- Forum: JFreeChart
- Topic: SWT fails to refresh after I add data to chart
- Replies: 4
- Views: 5946
- Wed Jan 16, 2008 1:15 pm
- Forum: JFreeChart
- Topic: Release Plan for JFreeChart 1.2?
- Replies: 3
- Views: 3834
Release Plan for JFreeChart 1.2?
I wonder what the status of the JFreeChart 1.2 development stream would be? Any idea when 1.2 will be released? Any plans to merge recent changes/fixes from the SVN 1.0.x branch to trunk?
Thanks, Christoph
Thanks, Christoph
- Sat Apr 07, 2007 8:28 pm
- Forum: JFreeChart
- Topic: [Sample] Dynamic jfreechart for SWT demo
- Replies: 6
- Views: 21499
Hi, I've just looked at the changes you've made in SWTGraphics2D. I think the changes should be rolled back. (1) after we called dispose() a resource cannot be used anymore (2) we should call dispose() only once on a resource (3) we should call dispose only on resources that we created I have the st...
- Mon Apr 02, 2007 11:03 pm
- Forum: JFreeChart
- Topic: [Sample] Dynamic jfreechart for SWT demo
- Replies: 6
- Views: 21499
On the "out of handles": I have the same problem. I guess that the jfreechart swt classes create SWT fonts from AWT fonts on the fly without disposing them later. The fonts should be cached in a font registry instead. Someone should investigate this since it's a real blocker... Did you create a bug ...
- Wed Feb 28, 2007 3:08 pm
- Forum: JFreeChart
- Topic: refreshing JFreeChart
- Replies: 6
- Views: 15090
Hi, I had the same problem. I guess this is a bug in the ChartComposite class. I solved it by changing method public void chartChanged(ChartChangeEvent event) : Replace this.redraw(); by this.forceRedraw(); As an alternative to direcly hacking ChartComposite you may want to subclass and overrid meth...