Search found 3 matches

by rickbier
Fri Jul 01, 2005 2:40 pm
Forum: JFreeChart
Topic: 100% CPU usage problem
Replies: 5
Views: 5239

To speed up points added to series

Taking a hint from another post to your message, I found that when adding points to a series (which I do before creating the chart), the following speeds things up by a factor of 4:

XYSeries s1 = new XYSeries(...);
s1.setNotify(false);
add all points to the series
s1.setNotify(true);
by rickbier
Thu Jun 30, 2005 9:31 pm
Forum: JFreeChart
Topic: 100% CPU usage problem
Replies: 5
Views: 5239

Heavy load

I found the same thing in using the plotting package. I found it best to lower the priority of the program doing the plotting so other tasks could get some CPU time.
by rickbier
Fri Jun 24, 2005 8:20 pm
Forum: JFreeChart
Topic: Code to print reports through printer
Replies: 1
Views: 1764

printing

I found that you can right click on the plot to get a menu that allows printing. Or do you need some special print handling?