Hi, I've been searching for a charting tool and this looks perfect.
Before I buy the guide and try to make it work, maybe someone knows if this is possible.
Using Swing -
I need to query an Oracle database to get a recordset. The bar graph will be based on the recordset. Very simple graph.
Does JFreeChart read the data from a file or can JFreeChart use the recordset directly?
Next I need to refresh this process every hour.
Does this sound feasible with Swing + JFreeChart?
Any insights would be greatly appreciated.
JDJ.
Newbie question on functionality
JFreeChart can read the data from the jdbc connection - have a look at org.jfree.data.jdbc.* for the Dataset classes.Using Swing -
I need to query an Oracle database to get a recordset. The bar graph will be based on the recordset. Very simple graph.
Does JFreeChart read the data from a file or can JFreeChart use the recordset directly?
you can also write your own to grab the resultset from the database and then populate whichever dataset you wish.
Not a big user of swing and JFreeChart, so I cannot give you too much insight. From memory it is possible.Next I need to refresh this process every hour.
Does this sound feasible with Swing + JFreeChart?