Search found 4 matches

by ArtieFufkin
Thu Feb 28, 2008 10:52 pm
Forum: JFreeChart
Topic: call javascript function when click on Image!!
Replies: 1
Views: 3311

I think you want to look into over riding the default Mouse Behavior on the Chart Panel so you can perform your Java Script code.

You can start by writing a class that extends Chart Panel and implement your own mouse action behavior in there.
by ArtieFufkin
Thu Feb 28, 2008 4:31 pm
Forum: JFreeChart
Topic: Suggestions for Speeding Up Chart Repainting?
Replies: 3
Views: 3110

Thanks for the tips. For my application, I found that it works better to just "down sample" the data I'm displaying on screen. I don't need to show each of the 100,000 points, so by reducing it JFreeChart doesn't have to paint as many points to each pixel.

Thanks for the response!
by ArtieFufkin
Wed Feb 27, 2008 5:09 am
Forum: JFreeChart
Topic: Suggestions for Speeding Up Chart Repainting?
Replies: 3
Views: 3110

*EDIT* I found the sticky on the "Fast plotting" classes so I'll investigate that to see if there's a solution in there. I also did notice that enabling buffering in the Chart constructor sped things up a bit as well....and I disabled the tool tips. Still, if anybody has a suggestion on how to updat...
by ArtieFufkin
Tue Feb 26, 2008 9:55 pm
Forum: JFreeChart
Topic: Suggestions for Speeding Up Chart Repainting?
Replies: 3
Views: 3110

Suggestions for Speeding Up Chart Repainting?

Hello, I have a bit of a dilemma with a Chart App. I'm working on. I have a chart with two series contained in a dataset. The first being a very long series(~100,000 points) and the second being a very coarse approximation of the first (~20 points). You can think of the second series as "sampling" t...