Search found 8 matches

by SamiLakka
Thu Apr 03, 2008 10:11 am
Forum: JFreeChart
Topic: To Those Who Use JFreeChart for Dynamic Plotting/Large Sets
Replies: 100
Views: 263015

Are these fast classes going to be added to JFreeChart?
by SamiLakka
Thu Nov 22, 2007 3:22 pm
Forum: JFreeChart
Topic: Pseudo 3D-view
Replies: 0
Views: 1922

Pseudo 3D-view

Hi


I was wondering if following pseudo 3D-view is possible with JFreeChart (see the middle picture)

http://spectrino.sicyon.com/screenshots/index.htm
by SamiLakka
Thu Nov 22, 2007 3:19 pm
Forum: JFreeChart
Topic: DeviationRenderer with TimeSeries
Replies: 0
Views: 2720

DeviationRenderer with TimeSeries

Hi I need to use DeviationRenderer with TimeSeries dataset. I looked the DeviationRenderer code and noticed that I have probably two alternatives: either write a new TimeSeries class that has support for deviations or somehow tweak the YIntervalDataset so that it can be plotted to TimeSeries chart. ...
by SamiLakka
Sat Sep 22, 2007 4:52 pm
Forum: JFreeChart
Topic: JFreeChart with Huge Datasets - Optimization
Replies: 5
Views: 7663

Re: JFreeChart with Huge Datasets - Optimization

Could you specify what you mean with rendering hints. Should there be some higher level renderer that would use Java2D to do the rendering but also provide support for pluggable optimizers (e.g. pixel optimizer that I described)? Then it would be up to user to choose whether to use optimizers or not...
by SamiLakka
Fri Sep 21, 2007 1:18 pm
Forum: JFreeChart
Topic: JFreeChart with Huge Datasets - Optimization
Replies: 5
Views: 7663

FastXYPlot

Sure thing, here it is. /** * Fast XY Plot implementation from * http://www.jfree.org/phpBB2/viewtopic.php?t=18592&postdays=0&postorder=asc&highlight=efficiency&start=15 * * Added some optimization. * * @author WA Technologies Oy (Sami Lakka) * */ public class FastXYPlot extends XYPlot { private sta...
by SamiLakka
Fri Sep 21, 2007 12:38 pm
Forum: JFreeChart
Topic: JFreeChart with Huge Datasets - Optimization
Replies: 5
Views: 7663

JFreeChart with Huge Datasets - Optimization

Hi We have to deal with huge datasets in our application (usually over 2 million points). We have developed a custom XYPlot that optimizes the rendering by testing that points that translate to same pixels are drawn only once. I was thinking that could XYPlot be further optimized by first "drawing" ...
by SamiLakka
Mon Mar 19, 2007 8:45 am
Forum: JFreeChart
Topic: To Those Who Use JFreeChart for Dynamic Plotting/Large Sets
Replies: 100
Views: 263015

FastXYPlot

I wrote a new version from the FastXYPlot renderFast method. My problem was that I have datasets that have lots of one pixel wide peaks and the previous version seemed to not draw them. This version isn't perfect but it seems to work relatively fast. /** * Performs fast rendering. Skips overlapping ...
by SamiLakka
Tue May 02, 2006 2:28 pm
Forum: JFreeChart
Topic: Bar charts
Replies: 1
Views: 2783

Bar charts

Hi, I have created an bar chart and I have an whole bunch of periodic data that I need to display in it. Basically I need to show how the bar lengths vary in time. The problem is that the chart changes the scale of the domain-axis every time I put new measurement in the screen. What I would like to ...