16 input graph

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
abghaffar
Posts: 1
Joined: Sun Jan 17, 2016 4:27 pm
antibot: No, of course not.

16 input graph

Post by abghaffar » Sun Jan 17, 2016 4:34 pm

Hi group,

Im intended to graph 16 output from a temperature sensor (Omron) . The Device send 16 X int vlaues ( temperature value ). I need program coding that can draw 16 graphs that can plot against each temperature value received on PC serial Interface.

Any one help!

BR-

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Re: 16 input graph

Post by david.gilbert » Mon Jan 18, 2016 10:31 pm

I moved your post to the JFreeChart forum. I don't see a reason why JFreeChart would not suit your requirements, but it won't help with reading the data from the serial interface, that part you'll have to do in your own code.
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

John Matthews
Posts: 513
Joined: Wed Sep 12, 2007 3:18 pm

Re: 16 input graph

Post by John Matthews » Wed Jan 20, 2016 7:09 pm

Read the device in the in the background using SwingWorker and process() the values as shown here. When you update the dataset, the listening chart will update itself in response.

Locked