Search found 3 matches

by KurtP
Tue Mar 22, 2011 8:50 pm
Forum: JFreeChart
Topic: How do I multithread BufferedImage rendering in ChartPanel?
Replies: 8
Views: 12398

Re: How do I multithread BufferedImage rendering in ChartPanel?

In my experience, the most important thing is a design that never allows repaint requests to be queued. If 10 data updates arrive before the system has a chance to repaint the chart, you dont need to display the 9 stale states as long as the chart displays all the accumulated changes when it finall...
by KurtP
Tue Mar 08, 2011 10:16 pm
Forum: JFreeChart
Topic: Prevent repaint requests to be queued / check queue
Replies: 1
Views: 2235

Prevent repaint requests to be queued / check queue

Hi - in an attempt to speed up updating my chart I learned about chart.setNotify(). Because multiple series' are updated at regular intervalls I set chart.setNotify(false), update the series', and then set chart.setNotify(true), which helped a lot compared to the previous version. Nevertheless, upda...
by KurtP
Fri Dec 03, 2010 8:48 pm
Forum: JFreeChart
Topic: Suggestion: Update API Doc (+ Devel guide) with @throws
Replies: 0
Views: 2524

Suggestion: Update API Doc (+ Devel guide) with @throws

Hi - JFreeChart is very cool, thanks for all your effort !! I just found out that XYSeries.add() can throw a SeriesException when an identical x-value is added to a XYSeries with allowDuplicateXValues=false It would be really helpful if Exceptions that can be thrown would appear in the javadoc, espe...