tags:

views:

31

answers:

1

Hello All,

I am having my own query which is:

select Name, count(requests) from cap group by name

So, how can I show that query as a graph in my jsp?

Thanx

+2  A: 

JFreeChart has some nice ChartUtilities that make it easy to stream a chart from a servlet.

trashgod
JFreeChart is great!
Truong Ha