Hi
I have a table like this
sql> select * from commodity;
commodity_id year value
---------------------- ------- ---------
C1 1996 20
C1 1998 39
C1 2000 45
C2 1990 170
C2 1995 200
C2 2000 480
C3 1983 10
C3 1987 45
C3 1991 230
C3 1995 125
How can i built the charts(line,bar ,charts) for year (Vs) Value for each commodity in java swings using Oracle chart builder.
I have a table like this
sql> select * from commodity;
commodity_id year value
---------------------- ------- ---------
C1 1996 20
C1 1998 39
C1 2000 45
C2 1990 170
C2 1995 200
C2 2000 480
C3 1983 10
C3 1987 45
C3 1991 230
C3 1995 125
How can i built the charts(line,bar ,charts) for year (Vs) Value for each commodity in java swings using Oracle chart builder.
Comment