vote up 2 vote down star
3

There was an earlier thread on Java graph or chart library, where JFreeChart was found to be quite good, but, as stated in its FAQ, it's not meant for real-time rendering.

Can anyone recommend a comparable library that supports real-time rendering? Just some basic xy-rendering - for instance, getting a voltage signal from data acquisition system and plotting it as it comes (time on x-axis, voltage on y-axis).

flag

77% accept rate
do you mean real-time or "amortized" real-time? (the latter being something that is responsive enough to look real-time to a human being, but no guarantees that occasionally it may slow down. If I need a hard real-time guarantee on something, it is usually related to propagation delay limits, and not very often related to human factors.) – Jason S May 13 at 18:30
I mean the latter - it's certainly enough that it looks real-time. This probably means something like 10 redraws / second. – Joonas Pulakka May 14 at 6:39

6 Answers

vote up 3 vote down check

What the FAQ actually says is that JFreeChart doesn't support hard real-time charting, meaning that the chart isn't updated when new data arrives or at deterministic interval after it. However I have found that JFreeChart can be used for the kind of applications you are describing. You can achieve 1 update per second, which is fine. I don't think a human eye can follow something quicker than this.

If you want something more than this, I doubt you will find anything in Java (or even in another language). Operating Systems that we use aren't designed to be real time. You can't have a guaranty that they will respond in a minimum interval after an event. A tight integration with the hardware driver will be needed to show more than 1-10 frames per second.

However, if you design your application correctly, the OS will do respond quickly and your application can easily display a "real-time" graph (meaning a graph that updates once a second). Just don't use your application to shut down a valve in an emergency situation!

link|flag
Well, we're on a kind of boundary here. 1/s is certainly jerky for the eye if the data is changing much faster. 10/s would be fine, but JFreeChart can't probably do it. – Joonas Pulakka Feb 17 at 8:46
Well if you calculate the data, then you could do 10 f/s in Java. I believe however that there is no way to do that if the data come from a data acquisition device. In that case you would need to communicate with the driver directly; this would be a much more difficult problem to solve. – kgiannakakis Feb 17 at 14:16
+1 I've used JFreeChart for a real-time graph of stock prices. – mmyers Feb 17 at 15:09
@kgiannakakis: ?! do you mean 10f/s as in 10 complete frames, or 10 incremental updates per second? I'm looking for a strip chart recorder, 1 updates/second is way too slow. Besides, there are a lot of data acquisition hardware modules that are pretty speedy, 10Ksamples/second is nothing. (whether any of them will work with Java is another story.... :( argh) – Jason S May 13 at 18:20
I mean 10 updates per second. Each update will cover more than one frame. You'll never know if it is tolerable until you do some real tests. – kgiannakakis May 13 at 21:49
vote up 2 vote down

have a look at processing -- it's an open-source, java-based environment designed for all sorts of animated visualizations.

link|flag
Are you sure its not itself a programming language, which perhaps influenced by Java? en.wikipedia.org/wiki/…) – Vinegar Feb 17 at 8:55
you're correct. but: "[...] is written in Java. Programs written in Processing are also translated to Java and then run as Java programs. Programs written in Java and Processing [...]" (from processing.org/reference/compare/…) so it will integrate with existing java models & libs. – netzwerg Feb 17 at 11:08
this tutorial (processing.org/learning/tutorials/…) explains how to integrate the processing libraries into an existing java project -- it's focused on eclipse, but conceptually this will work with any other java IDE... – netzwerg Feb 17 at 13:35
The conciseness of syntax looks somewhat similar to Groovy. Thanks for clarification. – Vinegar Feb 23 at 3:54
vote up 1 vote down

You could dig around the source for NetBeans. The profiler does real time graphing of various things such as memory usage.

link|flag
vote up 2 vote down

http://www.live-graph.org/

link|flag
vote up 1 vote down

Well, if it has to be Java, then you might want to look into these.

link|flag
vote up 1 vote down

Fast enough for real time is swtchart, at least in my experience. Even with lots of data. Don't be scared away by the version number, yes it is a rather new API, but I use it successfully without problems.

As the name implies, it is based on SWT, which uses native OS drawing. Also it does some clever optimizations for drawing fast, like not drawing all points in the dataset (see Large Series Example Snippet).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.